Enum conch_runtime::eval::TildeExpansion
[−]
[src]
pub enum TildeExpansion {
None,
First,
All,
}An enum representing how tildes (~) are expanded.
Variants
NoneTildes retain a literal value, no expansion is done.
FirstTildes are expanded if they are at the beginning of a word.
AllAll tildes (either at start of word or after :) are expanded.
Trait Implementations
impl PartialEq for TildeExpansion[src]
fn eq(&self, __arg_0: &TildeExpansion) -> bool[src]
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[src]
This method tests for !=.
impl Eq for TildeExpansion[src]
impl Copy for TildeExpansion[src]
impl Clone for TildeExpansion[src]
fn clone(&self) -> TildeExpansion[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more