Skip to main content

RowWriter

Trait RowWriter 

Source
pub trait RowWriter {
    // Required methods
    fn start(&mut self, schema: &SchemaRef) -> Result<()>;
    fn write_batch(&mut self, batch: &RecordBatch) -> Result<()>;
    fn finish(&mut self) -> Result<()>;
}

Required Methods§

Source

fn start(&mut self, schema: &SchemaRef) -> Result<()>

Source

fn write_batch(&mut self, batch: &RecordBatch) -> Result<()>

Source

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

Implementors§