pub trait MutStreamingIterator {
    type Item;
    type Error;
    fn advance(self) -> Result<State<Self>, Self::Error>;
fn get(&mut self) -> Option<&mut Self::Item>; }
This is supported on crate feature io_parquet only.

Associated Types

Required methods

Implementations on Foreign Types

Implementors