Struct std::hashmap::HashMapMutIterator

pub struct HashMapMutIterator<'self, K, V> {
    priv iter: VecMutIterator<'self, Option<Bucket<K, V>>>,
}

HashMap mutable values iterator

Trait Implementations

impl<'self, K, V> Iterator<(&'self K, &'self mut V)> for HashMapMutIterator<'self, K, V>

fn next(&mut self) -> Option<(&'self K, &'self mut V)>

Advance the iterator and return the next value. Return None when the end is reached.