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§