Struct device_tree::util::option::IterMut [] [src]

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

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

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>

Derived Implementations

impl<'a, A> Debug for IterMut<'a, A> where A: 'a + Debug

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