pub trait ForwardBackwardIterator: Iterator {
    fn prev(&mut self) -> Option<Self::Item>;
}

Required Methods

Implementors