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

pub struct IntoIter<V> {
    // some fields omitted
}

A consuming iterator over the key-value pairs of a map.

Trait Implementations

impl<V> Iterator for IntoIter<V>

type Item = (usize, V)

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

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

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

impl<V> DoubleEndedIterator for IntoIter<V>

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