Struct std::vec::MoveItems[src]
pub struct MoveItems<T> {
// some fields omitted
}An iterator that moves out of a vector.
pub struct MoveItems<T> {
// some fields omitted
}An iterator that moves out of a vector.
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) -> boolfn collect<B: FromIterator<T>>(&mut self) -> Bfn nth<T>(&mut self, uint) -> Option<T>fn last<T>(&mut self) -> Option<T>fn fold<B>(&mut self, B, |B, T| -> B) -> Bfn count<T>(&mut self) -> uintfn all<T>(&mut self, |T| -> bool) -> boolfn any<T>(&mut self, |T| -> bool) -> boolfn 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>impl<T> Drop for MoveItems<T>fn drop<T>(&mut self)
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).