Trait polars_io::SerReader[][src]

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

This is supported on crate feature csv-file only.

Create a new CsvReader from a file/ stream

Read the file and create the DataFrame.

This is supported on crate feature ipc only.
This is supported on crate feature json only.
This is supported on crate feature feature only.