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

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

An iterator over the values of a map.

Trait Implementations

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

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

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

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

type Item = &'a V

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

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

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

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

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