Skip to main content

FromRecursiveRoot

Trait FromRecursiveRoot 

Source
pub trait FromRecursiveRoot<R> {
    // Required method
    fn from_recursive_root(root: R, parser: &mut Parser) -> Self;
}

Required Methods§

Source

fn from_recursive_root(root: R, parser: &mut Parser) -> Self

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<R, T> FromRecursiveRoot<R> for T
where T: From<R>,