Struct std::collections::vec_map::IterMutStable [-] [+] [src]

pub struct IterMut<'a, V> where V: 'a {
    // some fields omitted
}

An iterator over the key-value pairs of a map, with the values being mutable.

Trait Implementations

impl<'a, V> Iterator for IterMut<'a, V>

type Item = (usize, &'a mut V)

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

fn size_hint(&self) -> (usize, Option<usize>)

fn size_hint(&self) -> (usize, Option<usize>)

impl<'a, V> DoubleEndedIterator for IterMut<'a, V>

fn next_back(&mut self) -> Option<(usize, &'a mut V)>