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
impl Copy for SwitchCondition
impl Eq for SwitchCondition
impl StructuralPartialEq for SwitchCondition
Auto Trait Implementations§
impl Freeze for SwitchCondition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more