pub trait Walker<C, A> {
    fn walk(&mut self, walk: Walk<'_, C, A>) -> Step;
}
Expand description

The trait used to construct a Branch or to iterate through a tree.

Required Methods

Walk the tree node, returning the appropriate Step

Implementors