protocol Iterable<Self, It, T> { ... }
It: Iterator<It, T>
Types that can be iterated.
Types that implement Iterable
can produce an iterator when called with
the iter
method.
Required methods
-
fn iter(self: &Self) -> It