bin-rs 0.0.10

Binary Reader from multi source
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Crate bin_rs is a binary manipulate crate.
//!

pub mod reader;
#[cfg(feature = "async")]
pub mod async_reader;
pub mod endian;
#[cfg(feature = "util")]
pub mod io;
pub use endian::*;
#[cfg(test)]
pub mod test;