Trait RecordBatchIterator

Source
pub trait RecordBatchIterator: Iterator<Item = RecordBatch> + Send {
    // Required method
    fn schema(&self) -> &SchemaRef;
}
Expand description

Iterator of Arrow RecordBatch that also knows its schema

Required Methods§

Source

fn schema(&self) -> &SchemaRef

Implementors§