pub trait TreeCursor<'a, N: Node<'a>> {
    // Required methods
    fn node(&self) -> N;
    fn goto_first_child(&mut self) -> bool;
    fn goto_parent(&mut self) -> bool;
    fn goto_next_sibling(&mut self) -> bool;
}

Required Methods§

source

fn node(&self) -> N

source

fn goto_first_child(&mut self) -> bool

source

fn goto_parent(&mut self) -> bool

source

fn goto_next_sibling(&mut self) -> bool

Implementors§