Protocol std::iter::IterableMut
protocol IterableMut<Self, It, T> { ... }
It: Iterator<It, &mut T>
Types that can produce an iterator over mutable pointers to their elements.
Required methods
-
fn iter_mut(self: &mut Self) -> It
Returns an iterator over mutable pointers to the elements of the collection.
See IterableMut for details.