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§
source§impl Clone for SwitchCondition
impl Clone for SwitchCondition
source§fn clone(&self) -> SwitchCondition
fn clone(&self) -> SwitchCondition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SwitchCondition
impl Debug for SwitchCondition
source§impl Display for SwitchCondition
impl Display for SwitchCondition
source§impl PartialEq for SwitchCondition
impl PartialEq for SwitchCondition
source§fn eq(&self, other: &SwitchCondition) -> bool
fn eq(&self, other: &SwitchCondition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more