pub trait ArrayStream: Stream<Item = VortexResult<ArrayRef>> {
// Required method
fn dtype(&self) -> &DType;
}Expand description
A stream of array chunks along with a DType.
Can be thought of as equivalent to Arrow’s RecordBatchReader.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".