Trait IntoTreeExt

Source
pub trait IntoTreeExt<Token> {
    // Required method
    fn into_tree<F>(self, fun: F) -> Tree<Token>
       where F: NestingFunction<Token>;
}

Required Methods§

Source

fn into_tree<F>(self, fun: F) -> Tree<Token>
where F: NestingFunction<Token>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Iterable, Token> IntoTreeExt<Token> for Iterable
where Iterable: IntoIterator<Item = Token>,