Enum binary_tree::WalkAction [] [src]

pub enum WalkAction {
    Left,
    Right,
    Stop,
}

List of actions during a Node::walk or NodeMut::walk_*.

Variants

Enter(ed) the left child

Enter(ed) the right child

Stop walking

Trait Implementations

impl Clone for WalkAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for WalkAction
[src]

impl PartialEq for WalkAction
[src]

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

This method tests for !=.