luminol_data/helpers/mod.rs
1// Copyright (C) 2024 Melody Madeline Lyons
2//
3// This file is part of Luminol.
4//
5// Luminol is free software: you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// Luminol is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with Luminol. If not, see <http://www.gnu.org/licenses/>.
17
18pub mod id_serde;
19pub mod id_vec_serde;
20pub mod nil_padded_serde;
21pub mod optional_id_serde;
22pub mod optional_path_serde;
23
24pub mod id_alox;
25pub mod id_vec_alox;
26pub mod nil_padded_alox;
27pub mod optional_id_alox;
28pub mod optional_path_alox;
29
30mod parameter_type;
31
32pub use parameter_type::*;