pub trait MutStreamingIterator {
    type Item;
    type Error;

    fn advance(self) -> Result<State<Self>, Self::Error>;
    fn get(&mut self) -> Option<&mut Self::Item>;
}
Available on crate feature io_parquet only.
Expand description

A special kind of fallible streaming iterator where advance consumes the iterator.

Required Associated Types

Required Methods

Implementors