Struct core::result::IterMutStable [-]  [+] [src]

pub struct IterMut<'a, T: 'a> {
    // some fields omitted
}

An iterator over a mutable reference to the Ok variant of a Result.

Trait Implementations

impl<'a, T> Iterator<&'a mut T> for IterMut<'a, T>

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

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

impl<'a, T> DoubleEndedIterator<&'a mut T> for IterMut<'a, T>

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

impl<'a, T> ExactSizeIterator<&'a mut T> for IterMut<'a, T>

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

fn len(&self) -> uint