binreader 0.2.1

A helper library to make reading binary data more pleasant.
Documentation
1
2
3
4
5
6
7
8
9
10
mod random_access;
mod slice;

pub use random_access::RandomAccessBinReader;
pub use slice::{SliceRefBinReader, SliceableBinReader};

#[cfg(feature = "memmap")]
mod mmap;
#[cfg(feature = "memmap")]
pub use mmap::MmapBinReader;