pub trait RunLength: Iterator { // Provided method fn run_length_encode(&mut self) -> Vec<(Self::Item, usize)> where Self::Item: PartialEq { ... } }