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

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

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

Trait Implementations

impl<'a, A> Iterator for IterMut<'a, A>

type Item = &'a mut A

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

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

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

impl<'a, A> DoubleEndedIterator for IterMut<'a, A>

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

impl<'a, A> ExactSizeIterator for IterMut<'a, A>

fn len(&self) -> usize