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

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

An iterator over the key-value pairs of a map.

Trait Implementations

impl<'a, V> Clone for Iter<'a, V>

fn clone(&self) -> Iter<'a, V>

fn clone_from(&mut self, &Iter<'a, V>)

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

type Item = (usize, &'a V)

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

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

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

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

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