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§
Implementors§
impl RecordBatchStream for LimitStream
impl RecordBatchStream for LazyMemoryStream
impl RecordBatchStream for MemoryStream
impl RecordBatchStream for EmptyRecordBatchStream
impl RecordBatchStream for BlockingStream
Available on crate feature
bench
only.impl RecordBatchStream for TestStream
Available on crate feature
bench
only.