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