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