Trait hyper_ast::tree_gen::parser::TreeCursor
source · 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;
}