trait Node { fn zomg(); } trait Graph { fn nodes<'a, I: Iterator>(&'a self) -> I where N: 'a; } impl Graph for Vec { fn nodes<'a, I: Iterator>(&self) -> I where N: 'a { self.iter() //~ ERROR mismatched types } } struct Stuff; impl Node for Stuff { fn zomg() { println!("zomg"); } } fn iterate>(graph: &G) { for node in graph.iter() { //~ ERROR no method named `iter` found node.zomg(); } } pub fn main() { let graph = Vec::new(); graph.push(Stuff); iterate(graph); //~ ERROR mismatched types }