Trait slicetools::StreamerMut [] [src]

pub trait StreamerMut<'a, Item: 'a> {
    fn next(&'a mut self) -> Option<Item>;
}

A trait to implement streaming iterators that can return mutable reference to oneself.

Required Methods

Implementors