pub enum Condition {
Show 16 variants
Overflow = 0,
NotOverflow = 1,
Below = 2,
AboveOrEqual = 3,
Equal = 4,
NotEqual = 5,
BelowOrEqual = 6,
Above = 7,
Sign = 8,
NotSign = 9,
Parity = 10,
NotParity = 11,
Less = 12,
GreaterOrEqual = 13,
LessOrEqual = 14,
Greater = 15,
}
Variants§
Overflow = 0
NotOverflow = 1
Below = 2
AboveOrEqual = 3
Equal = 4
NotEqual = 5
BelowOrEqual = 6
Above = 7
Sign = 8
NotSign = 9
Parity = 10
NotParity = 11
Less = 12
GreaterOrEqual = 13
LessOrEqual = 14
Greater = 15
Trait Implementations§
impl Copy for Condition
impl Eq for Condition
impl StructuralPartialEq for Condition
Auto Trait Implementations§
impl Freeze for Condition
impl RefUnwindSafe for Condition
impl Send for Condition
impl Sync for Condition
impl Unpin for Condition
impl UnwindSafe for Condition
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