pub trait SerReader<R> where
    R: Read + Seek
{ fn new(reader: R) -> Self; fn finish(self) -> Result<DataFrame>; fn set_rechunk(self, _rechunk: bool) -> Self
    where
        Self: Sized
, { ... } }

Required Methods

Take the SerReader and return a parsed DataFrame.

Provided Methods

Rechunk to a single chunk after Reading file.

Implementors