Trait IntoTreeIterator

Source
pub trait IntoTreeIterator<'a> {
    type Item;
    type IntoIter: Iterator<Item = Self::Item>;

    // Required method
    fn into_iter(self, tree: &'a Tree) -> Self::IntoIter;
}

Required Associated Types§

Source

type Item

Source

type IntoIter: Iterator<Item = Self::Item>

Required Methods§

Source

fn into_iter(self, tree: &'a Tree) -> Self::IntoIter

Implementors§