Skip to main content

RecordBatchIterator

Trait RecordBatchIterator 

Source
pub trait RecordBatchIterator: Iterator<Item = RecordBatch> + Send {
    // Required method
    fn schema(&self) -> &SchemaRef;
}
Expand description

Iterator of Arrow RecordBatch that also knows its schema

Required Methods§

Source

fn schema(&self) -> &SchemaRef

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§