pub trait IteratorExtensions: Iterator { // Provided method fn join(&mut self, sep: &str) -> String where Self::Item: Display { ... } }