pub trait ArrayStream: Stream<Item = VortexResult<ArrayData>> {
// 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.
pub trait ArrayStream: Stream<Item = VortexResult<ArrayData>> {
// Required method
fn dtype(&self) -> &DType;
}
A stream of array chunks along with a DType.
Can be thought of as equivalent to Arrow’s RecordBatchReader.