pub trait RecordBatchStream: Stream<Item = Result<RecordBatch, DataFusionError>> {
// Required method
fn schema(&self) -> Arc<Schema> ⓘ;
}Expand description
Trait for types that stream RecordBatch
See SendableRecordBatchStream for more details.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".