Enum binary_tree::WalkAction
[−]
[src]
pub enum WalkAction {
Left,
Right,
Stop,
}List of actions taken during Node::walk or NodeMut::walk_mut.
Variants
LeftEnter(ed) the left child
RightEnter(ed) the right child
StopStop 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) -> bool1.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