pub trait AssertNextIterator: Iterator {
    fn assert_next(&mut self, item: Self::Item) -> Result<(), ()>;
}

Required Methods

Implementors