Trait GetNode

Source
pub trait GetNode<T: Debug + Clone> {
    // Required methods
    fn get_first_sibling(&self) -> Option<Node<T>>;
    fn get_last_sibling(&self) -> Option<Node<T>>;
    fn get_last_child(&self) -> Option<Node<T>>;
}

Required Methods§

Implementors§

Source§

impl<T: Debug + Clone> GetNode<T> for Node<T>