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;