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

pub struct IntoIter<A> {
    // some fields omitted
}
1.0.0

An iterator over the item contained inside an Option.

Trait Implementations

impl<A> Iterator for IntoIter<A>

type Item = A

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

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

impl<A> DoubleEndedIterator for IntoIter<A>

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

impl<A> ExactSizeIterator for IntoIter<A>

Derived Implementations

impl<A> Debug for IntoIter<A> where A: Debug

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

impl<A> Clone for IntoIter<A> where A: Clone

fn clone(&self) -> IntoIter<A>