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 moresourceimpl 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
sourcefn eq(&self, other: &SwitchCondition) -> bool
fn eq(&self, other: &SwitchCondition) -> bool
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more