pub trait RecordBatchStream: Stream<Item = Result<RecordBatch, ArrowError>> {
// Required method
fn schema(&self) -> &SchemaRef;
}Expand description
Trait for an asynchronous stream of RecordBatches.
pub trait RecordBatchStream: Stream<Item = Result<RecordBatch, ArrowError>> {
// Required method
fn schema(&self) -> &SchemaRef;
}Trait for an asynchronous stream of RecordBatches.