pub trait RecordBatchStream: Stream<Item = Result<RecordBatch>> {
// Required method
fn schema(&self) -> SchemaRef;
}
Expand description
Trait for types that stream RecordBatch
See SendableRecordBatchStream
for more details.
pub trait RecordBatchStream: Stream<Item = Result<RecordBatch>> {
// Required method
fn schema(&self) -> SchemaRef;
}
Trait for types that stream RecordBatch
See SendableRecordBatchStream
for more details.