pub trait MmapBytesReader: Read + Seek + Send + Sync {
    fn to_file(&self) -> Option<&File> { ... }
fn to_bytes(&self) -> Option<&[u8]> { ... } }
Expand description

Trait used to get a hold to file handler or to the underlying bytes without performing a Read.

Provided methods

Implementations on Foreign Types

Implementors