Skip to main content

ArrayStream

Trait ArrayStream 

Source
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§

Source

fn dtype(&self) -> &DType

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§