Protocol std::iter::Iterable

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