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