1mod random_access; 2mod slice; 3 4pub use random_access::RandomAccessBinReader; 5pub use slice::{SliceRefBinReader, SliceableBinReader}; 6 7#[cfg(feature = "memmap")] 8mod mmap; 9#[cfg(feature = "memmap")] 10pub use mmap::MmapBinReader;