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