Trait hyper_ast::position::TypedTreePath
source · pub trait TypedTreePath<TIdN: TypedNodeId, Idx>: TreePath<TIdN::IdN, Idx> {
// Required methods
fn node_typed(&self) -> Option<&TIdN>;
fn pop_typed(&mut self) -> Option<(TIdN, Idx)>;
fn goto_typed(&mut self, node: TIdN, i: Idx);
}