Enum binary_tree::WalkAction [] [src]

pub enum WalkAction {
    Left,
    Right,
    Stop,
}

List of actions taken during Node::walk or NodeMut::walk_mut.

Variants

Left

Enter(ed) the left child

Right

Enter(ed) the right child

Stop

Stop walking

Trait Implementations

impl PartialEq for WalkAction
[src]

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.

impl Copy for WalkAction
[src]

impl Clone for WalkAction
[src]

fn clone(&self) -> WalkAction

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more