Enum conch_runtime::eval::TildeExpansion[][src]

pub enum TildeExpansion {
    None,
    First,
    All,
}

An enum representing how tildes (~) are expanded.

Variants

Tildes retain a literal value, no expansion is done.

Tildes are expanded if they are at the beginning of a word.

All tildes (either at start of word or after :) are expanded.

Trait Implementations

impl PartialEq for TildeExpansion
[src]

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

This method tests for !=.

impl Eq for TildeExpansion
[src]

impl Copy for TildeExpansion
[src]

impl Clone for TildeExpansion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TildeExpansion
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations