pub mod de; mod error; pub mod ser; mod settings; pub use error::{StructError, StructResult}; pub use ser::ArchiveSerializer; pub use settings::{ByteOrder, Settings, VariantIndexType}; #[cfg(test)] mod tests;