Struct collections::vec_map::KeysExperimental [-]  [+] [src]

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

An iterator over the keys of a map.

Trait Implementations

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

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

fn clone_from(&mut self, source: &Self)

impl<'a, V> Iterator<uint> for Keys<'a, V>

fn next(&mut self) -> Option<uint>

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

impl<'a, V> DoubleEndedIterator<uint> for Keys<'a, V>

fn next_back(&mut self) -> Option<uint>