#[repr(u8)]pub enum Condition {
Show 22 variants
Equal = 1,
NotEqual = 2,
Above = 3,
AboveOrEqual = 4,
Below = 5,
BelowOrEqual = 6,
Greater = 7,
GreaterOrEqual = 8,
Less = 9,
LessOrEqual = 10,
Overflow = 11,
NotOverflow = 12,
Parity = 13,
NotParity = 14,
ParityOdd = 15,
ParityEven = 16,
Sign = 17,
NotSign = 18,
Zero = 19,
NotZero = 20,
Carry = 21,
NotCarry = 22,
}
Variants§
Equal = 1
NotEqual = 2
Above = 3
In unsigned sense.
AboveOrEqual = 4
In unsigned sense.
Below = 5
In unsigned sense.
BelowOrEqual = 6
In unsigned sense.
Greater = 7
In signed sense.
GreaterOrEqual = 8
In signed sense.
Less = 9
In signed sense.
LessOrEqual = 10
In signed sense.
Overflow = 11
NotOverflow = 12
Parity = 13
NotParity = 14
ParityOdd = 15
ParityEven = 16
Sign = 17
NotSign = 18
Zero = 19
NotZero = 20
Carry = 21
NotCarry = 22
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