Struct std::option::IntoIterStable [-] [+] [src]

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

An iterator over the item contained inside an Option.

Trait Implementations

impl<A> Iterator for IntoIter<A>

type Item = A

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

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

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

impl<A> DoubleEndedIterator for IntoIter<A>

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

impl<A> ExactSizeIterator for IntoIter<A>

fn len(&self) -> usize