Struct std::vec::MoveItems[src]

pub struct MoveItems<T> {
    // some fields omitted
}

An iterator that moves out of a vector.

Trait Implementations

impl<T> Iterator<T> for MoveItems<T>

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

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

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

fn chain<U: Iterator<T>>(self, U) -> Chain<MoveItems<T>, U>

fn zip<B, U: Iterator<B>>(self, U) -> Zip<MoveItems<T>, U>

fn map<B>(self, |T|: 'r -> B) -> Map<'r, T, B, MoveItems<T>>

fn filter<T>(self, |&T|: 'r -> bool) -> Filter<'r, T, MoveItems<T>>

fn filter_map<B>(self, |T|: 'r -> Option<B>) -> FilterMap<'r, T, B, MoveItems<T>>

fn enumerate<T>(self) -> Enumerate<MoveItems<T>>

fn peekable<T>(self) -> Peekable<T, MoveItems<T>>

fn skip_while<T>(self, |&T|: 'r -> bool) -> SkipWhile<'r, T, MoveItems<T>>

fn take_while<T>(self, |&T|: 'r -> bool) -> TakeWhile<'r, T, MoveItems<T>>

fn skip<T>(self, uint) -> Skip<MoveItems<T>>

fn take<T>(self, uint) -> Take<MoveItems<T>>

fn scan<St, B>(self, St, |&mut St, T|: 'r -> Option<B>) -> Scan<'r, T, B, MoveItems<T>, St>

fn flat_map<B, U: Iterator<B>>(self, |T|: 'r -> U) -> FlatMap<'r, T, MoveItems<T>, U>

fn fuse<T>(self) -> Fuse<MoveItems<T>>

fn inspect<T>(self, |&T|: 'r) -> Inspect<'r, T, MoveItems<T>>

fn by_ref<T>(&'r mut self) -> ByRef<'r, MoveItems<T>>

fn advance<T>(&mut self, |T| -> bool) -> bool

fn collect<B: FromIterator<T>>(&mut self) -> B

fn nth<T>(&mut self, uint) -> Option<T>

fn last<T>(&mut self) -> Option<T>

fn fold<B>(&mut self, B, |B, T| -> B) -> B

fn count<T>(&mut self) -> uint

fn all<T>(&mut self, |T| -> bool) -> bool

fn any<T>(&mut self, |T| -> bool) -> bool

fn find<T>(&mut self, |&T| -> bool) -> Option<T>

fn position<T>(&mut self, |T| -> bool) -> Option<uint>

fn max_by<B: Ord>(&mut self, |&T| -> B) -> Option<T>

fn min_by<B: Ord>(&mut self, |&T| -> B) -> Option<T>

impl<T> DoubleEndedIterator<T> for MoveItems<T>

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

fn rev<T>(self) -> Rev<MoveItems<T>>

impl<T> Drop for MoveItems<T>

fn drop<T>(&mut self)