Struct device_tree::util::option::IterMut1.0.0 [] [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> Debug for IterMut<'a, A> where A: 'a + Debug

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

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>)

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>