mod.rs
1 // Copyright (C) 2019-2025 ADnet Contributors 2 // This file is part of the ADL library. 3 4 // The ADL library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 9 // The ADL library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 14 // You should have received a copy of the GNU General Public License 15 // along with the ADL library. If not, see <https://www.gnu.org/licenses/>. 16 17 mod array; 18 pub use array::*; 19 20 mod composite_type; 21 pub use composite_type::*; 22 23 mod future; 24 pub use future::*; 25 26 mod integer_type; 27 pub use integer_type::*; 28 29 mod optional; 30 pub use optional::*; 31 32 mod mapping; 33 pub use mapping::*; 34 35 mod tuple; 36 pub use tuple::*; 37 38 mod type_; 39 pub use type_::*; 40 41 mod vector; 42 pub use vector::*;