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

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

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

Trait Implementations

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

type Item = &'a mut T

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

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

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

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

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

Derived Implementations

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

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