Skip to main content

IntoTreeIterator

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§