Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
RecordBatchStream in datafusion::physical_plan - Rust
[go: Go Back, main page]

pub trait RecordBatchStream: Stream<Item = ArrowResult<RecordBatch>> {
    fn schema(&self) -> SchemaRef;
}
Expand description

Trait for types that stream arrow::record_batch::RecordBatch

Required Methods

Returns the schema of this RecordBatchStream.

Implementation of this trait should guarantee that all RecordBatch’s returned by this stream should have the same schema as returned from this method.

Implementors