pub trait EndlessIterator: Iterator {
    fn next(&mut self) -> Self::Item;
}

Required Methods

Implementations on Foreign Types

Implementors