Enum yash_syntax::syntax::SwitchCondition
source · [−]pub enum SwitchCondition {
Unset,
UnsetOrEmpty,
}
Expand description
Condition that triggers a switch.
In the lexical grammar of the shell language, a switch condition is an optional colon that precedes a switch type.
Variants
Unset
Without a colon, the switch is triggered if the parameter is unset.
UnsetOrEmpty
With a colon, the switch is triggered if the parameter is unset or empty.
Trait Implementations
sourceimpl Clone for SwitchCondition
impl Clone for SwitchCondition
sourcefn clone(&self) -> SwitchCondition
fn clone(&self) -> SwitchCondition
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SwitchCondition
impl Debug for SwitchCondition
sourceimpl Display for SwitchCondition
impl Display for SwitchCondition
sourceimpl PartialEq<SwitchCondition> for SwitchCondition
impl PartialEq<SwitchCondition> for SwitchCondition
impl Copy for SwitchCondition
impl Eq for SwitchCondition
impl StructuralEq for SwitchCondition
impl StructuralPartialEq for SwitchCondition
Auto Trait Implementations
impl RefUnwindSafe for SwitchCondition
impl Send for SwitchCondition
impl Sync for SwitchCondition
impl Unpin for SwitchCondition
impl UnwindSafe for SwitchCondition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more