common_recordbatch

Trait RecordBatchStream

source
pub trait RecordBatchStream: Stream<Item = Result<RecordBatch>> {
    // Required methods
    fn schema(&self) -> SchemaRef;
    fn output_ordering(&self) -> Option<&[OrderOption]>;
    fn metrics(&self) -> Option<RecordBatchMetrics>;

    // Provided method
    fn name(&self) -> &str { ... }
}

Required Methods§

source

fn schema(&self) -> SchemaRef

source

fn output_ordering(&self) -> Option<&[OrderOption]>

source

fn metrics(&self) -> Option<RecordBatchMetrics>

Provided Methods§

source

fn name(&self) -> &str

Implementors§