blob: feb37dd7de54332b4787b7484a5448dd00d23068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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;
|