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) -> ItReturns an iterator over mutable pointers to the elements of the collection. See IterableMut for details.