pub trait Iterable<Item> { // Required method fn iter<'i>(&'i self) -> Iter<'i, Item>; }
Trait to mark a struct as iterable over Item.
Item
Get the iterator.