pub trait RecordBatchReader: Iterator<Item = Result<RecordBatch, ArrowError>> {
// Required method
fn schema(&self) -> SchemaRef;
}
Expand description
Trait for types that can read RecordBatch
’s.
To create from an iterator, see RecordBatchIterator.