pub trait DoubleEndedFallibleIterator: FallibleIterator {
    fn next_back(&mut self) -> Result<Option<Self::Item>, Self::Error>;
}
Expand description

A fallible iterator able to yield elements from both ends.

Required Methods§

Advances the end of the iterator, returning the last value.

Implementations on Foreign Types§

Implementors§