1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
///! This is a namespace to make specific names available to macros, ///! and traits necessary for reading/writing that must be public to ///! be used to be found somehow, but hiding it behind a namespace so that ///! the implementation details cannot be relied upon. pub mod branch; #[macro_use] pub mod primitive; pub mod reader_writer; pub mod error; pub(crate) mod encodings; pub mod types; pub mod rust_std; pub use { reader_writer::{Readable, Reader, Writable, Writer}, primitive::*, branch::*, encodings::*, types::*, rust_std::*, };