mito2::memtable

Trait IterBuilder

Source
pub trait IterBuilder: Send + Sync {
    // Required method
    fn build(&self) -> Result<BoxedBatchIterator>;
}
Expand description

Builder to build an iterator to read the range. The builder should know the projection and the predicate to build the iterator.

Required Methods§

Source

fn build(&self) -> Result<BoxedBatchIterator>

Returns the iterator to read the range.

Implementors§