pub enum NodeTraversalOrder {
    Preorder,
    Postorder,
}
Expand description

Specify the traversal order used by TreeInterface::traverse_nodes.

Variants

Preorder

Preorder traversal, starting at the root(s) of a TreeInterface. For trees with multiple roots, start at the left root, traverse to tips, proceeed to the next root, etc..

Postorder

Postorder traversal, starting at the root(s) of a TreeInterface. For trees with multiple roots, start at the left root, traverse to tips, proceeed to the next root, etc..

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Drops the content pointed by this pointer and frees it. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.