Trait lrs::iter::Iterator

Objects that can be iterated over.

Syntax

trait Iterator {
    type Item;

    /* Required methods */
    fn next(&mut self) -> Option<<Self as Iterator>::Item>
}

Associated types

NameDescription
Item

The type that the iterator yields.

Methods

ReceiverNameDescription
&mut selfnext

Yields the next value.