aboutsummaryrefslogtreecommitdiff
path: root/src/structs/mod.rs
blob: 36bc33ebc40f15a119086a29cf351ea609094e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pub mod de;
mod error;
pub mod ser;
mod settings;

pub use de::ArchiveDeserializer;
pub use error::{StructError, StructResult};
pub use ser::ArchiveSerializer;
pub use settings::{ByteOrder, Settings, VariantIndexType};

#[cfg(test)]
mod tests;