pub type CsvZstTableWriter<'a> = Writer<AutoFinishEncoder<'a, File>>;

Aliased Type§

struct CsvZstTableWriter<'a> { /* private fields */ }

Trait Implementations§

source§

impl<'a> TableWriter for CsvZstTableWriter<'a>

§

type Schema = ()

§

type CloseResult = ()

source§

fn new( path: PathBuf, _schema: Self::Schema, _flush_threshold: Option<usize> ) -> Result<Self>

source§

fn flush(&mut self) -> Result<()>

Calls .into() on the internal builder, and writes its result to disk.
source§

fn close(self) -> Result<()>