pub trait RecordBatchStream: Stream<Item = Result<RecordBatch, DataFusionError>> {
// Required method
fn schema(&self) -> Arc<Schema>;
}
Expand description
Trait for types that stream arrow::record_batch::RecordBatch
pub trait RecordBatchStream: Stream<Item = Result<RecordBatch, DataFusionError>> {
// Required method
fn schema(&self) -> Arc<Schema>;
}
Trait for types that stream arrow::record_batch::RecordBatch