Struct core::option::IterStable [-]  [+] [src]

pub struct Iter<'a, A: 'a> {
    // some fields omitted
}

An iterator over a reference of the contained item in an Option.

Trait Implementations

impl<'a, A> Iterator<&'a A> for Iter<'a, A>

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

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

impl<'a, A> DoubleEndedIterator<&'a A> for Iter<'a, A>

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

impl<'a, A> ExactSizeIterator<&'a A> for Iter<'a, A>

fn rposition<P>(&mut self, predicate: P) -> Option<uint> where P: FnMut(A) -> bool

fn len(&self) -> uint

impl<'a, A> Clone for Iter<'a, A>

fn clone(&self) -> Iter<'a, A>

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