Trait polars_io::mmap::MmapBytesReader [−][src]
pub trait MmapBytesReader: Read + Seek + Send + Sync {
fn to_file(&self) -> Option<&File> { ... }
fn to_bytes(&self) -> Option<&[u8]> { ... }
}
This is supported on crate feature
csv-file
only.Expand description
Trait used to get a hold to file handler or to the underlying bytes without performing a Read.