Trait polars_io::mmap::MmapBytesReader  
source · pub trait MmapBytesReader: Read + Seek + Send + Sync {
    // Provided methods
    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.