pub trait RecordBatchWriter {
    // Required methods
    fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>;
    fn close(self) -> Result<(), ArrowError>;
}
Expand description

Trait for types that can write RecordBatch’s.

Required Methods§

source

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

Write a single batch to the writer.

source

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

Write footer or termination data, then mark the writer as done.

Implementations on Foreign Types§

source§

impl<W> RecordBatchWriter for Writer<W>
where W: Write,

source§

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

source§

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

source§

impl<W> RecordBatchWriter for FileWriter<W>
where W: Write,

source§

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

source§

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

source§

impl<W> RecordBatchWriter for StreamWriter<W>
where W: Write,

source§

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

source§

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

source§

impl<W, F> RecordBatchWriter for Writer<W, F>
where W: Write, F: JsonFormat,

source§

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

source§

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

Implementors§