Enum binary_tree::WalkAction
[−]
[src]
pub enum WalkAction {
Left,
Right,
Stop,
}List of actions during a Node::walk or NodeMut::walk_*.
Variants
Left | Enter(ed) the left child | |
Right | Enter(ed) the right child | |
Stop | Stop walking |