Trait datafusion::physical_plan::RecordBatchStream[][src]

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

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

Required methods

fn schema(&self) -> SchemaRef[src]

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.

Loading content...

Implementors

Loading content...