diff options
Diffstat (limited to 'src/structs/mod.rs')
| -rw-r--r-- | src/structs/mod.rs | 13 |
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 @@ | |||
| 1 | mod de; | 1 | pub mod de; |
| 2 | mod ser; | 2 | mod error; |
| 3 | pub mod ser; | ||
| 4 | mod settings; | ||
| 5 | |||
| 6 | pub use error::{StructError, StructResult}; | ||
| 7 | pub use ser::ArchiveSerializer; | ||
| 8 | pub use settings::{ByteOrder, Settings, VariantIndexType}; | ||
| 9 | |||
| 10 | #[cfg(test)] | ||
| 11 | mod tests; | ||
