aboutsummaryrefslogtreecommitdiff
path: root/src/structs/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs/mod.rs')
-rw-r--r--src/structs/mod.rs13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/structs/mod.rs b/src/structs/mod.rs
index d7e9daa..feb37dd 100644
--- a/src/structs/mod.rs
+++ b/src/structs/mod.rs
@@ -1,2 +1,11 @@
1mod de; 1pub mod de;
2mod ser; 2mod error;
3pub mod ser;
4mod settings;
5
6pub use error::{StructError, StructResult};
7pub use ser::ArchiveSerializer;
8pub use settings::{ByteOrder, Settings, VariantIndexType};
9
10#[cfg(test)]
11mod tests;