IntoNode

Trait IntoNode 

Source
pub trait IntoNode {
    // Required method
    fn into_node(self) -> Rc<dyn Node>;
}
Expand description

Used to consume a concrete MutableNode and return an Rc<dyn Node>>.

Required Methods§

Source

fn into_node(self) -> Rc<dyn Node>

Implementors§

Source§

impl<NODE: MutableNode + 'static> IntoNode for NODE