pub enum SwitchOperand {
Equals,
GreaterThan,
LessThan,
GreaterThanOrEqual,
LessThanOrEqual,
NotEqual,
}Expand description
Switch operand.
Variants§
Equals
Equality operator.
GreaterThan
Greater than operator.
LessThan
Less than operator.
GreaterThanOrEqual
Greater than or equal to operator.
LessThanOrEqual
Less than or eqaul to operator.
NotEqual
Not equal operator.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SwitchOperand
impl RefUnwindSafe for SwitchOperand
impl Send for SwitchOperand
impl Sync for SwitchOperand
impl Unpin for SwitchOperand
impl UnwindSafe for SwitchOperand
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