pub trait MmapBytesReader: Read + Seek + Send + Sync {
    fn to_file(&self) -> Option<&File> { ... }
    fn to_bytes(&self) -> Option<&[u8]> { ... }
}
Available on crate features csv-file or parquet or ipc or json only.
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§