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

Trait Implementations

Derived Implementations

impl PartialEq for WalkAction
[src]

fn eq(&self, __arg_0: &WalkAction) -> bool

fn ne(&self, other: &Rhs) -> bool
1.0.0

impl Copy for WalkAction
[src]

impl Clone for WalkAction
[src]

fn clone(&self) -> WalkAction

fn clone_from(&mut self, source: &Self)
1.0.0