Struct std::hashmap::HashMapMoveIterator

pub struct HashMapMoveIterator<K, V> {
    priv iter: MoveRevIterator<Option<Bucket<K, V>>>,
}

HashMap move iterator

Trait Implementations

impl<K, V> Iterator<(K, V)> for HashMapMoveIterator<K, V>

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

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