pub enum BranchOrder {
    ShortestFirst(bool),
    LongestFirst(bool),
}
Expand description

Ordering policy for branches in visual columns.

Variants

ShortestFirst(bool)

Recommended! Shortest branches are inserted left-most.

For branches with equal length, branches ending last are inserted first. Reverse (arg = false): Branches ending first are inserted first.

LongestFirst(bool)

Longest branches are inserted left-most.

For branches with equal length, branches ending last are inserted first. Reverse (arg = false): Branches ending first are inserted first.

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

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.