1 2 3 4 5 6 7 8 9 10
#![doc = include_str!("../README.md")] pub mod byte_order; pub mod errors; #[cfg(feature = "read")] pub(crate) mod parser; pub mod tag; pub use byte_order::ByteOrder; pub use tag::Tag;