pub trait MutStreamingIterator: Sized {
    type Item;
    type Error;
    fn advance(self) -> Result<State<Self>, Self::Error>;
fn get(&mut self) -> Option<&mut Self::Item>; }

Associated Types

Required methods

Implementors