#[repr(u8)]pub enum ConditionX64 {
Show 27 variants
Overflow = 0,
NoOverflow = 1,
Carry = 2,
NoCarry = 3,
Below = 4,
BelowEqual = 5,
Above = 6,
AboveEqual = 7,
Equal = 8,
Less = 9,
LessEqual = 10,
Greater = 11,
GreaterEqual = 12,
NotBelow = 13,
NotBelowEqual = 14,
NotAbove = 15,
NotAboveEqual = 16,
NotEqual = 17,
NotLess = 18,
NotLessEqual = 19,
NotGreater = 20,
NotGreaterEqual = 21,
Zero = 22,
NotZero = 23,
Parity = 24,
NotParity = 25,
Count = 26,
}Variants§
Overflow = 0
NoOverflow = 1
Carry = 2
NoCarry = 3
Below = 4
BelowEqual = 5
Above = 6
AboveEqual = 7
Equal = 8
Less = 9
LessEqual = 10
Greater = 11
GreaterEqual = 12
NotBelow = 13
NotBelowEqual = 14
NotAbove = 15
NotAboveEqual = 16
NotEqual = 17
NotLess = 18
NotLessEqual = 19
NotGreater = 20
NotGreaterEqual = 21
Zero = 22
NotZero = 23
Parity = 24
NotParity = 25
Count = 26
Implementations§
Source§impl ConditionX64
impl ConditionX64
pub const Overflow: Self = Self::Overflow
pub const NoOverflow: Self = Self::NoOverflow
pub const Carry: Self = Self::Carry
pub const NoCarry: Self = Self::NoCarry
pub const Below: Self = Self::Below
pub const BelowEqual: Self = Self::BelowEqual
pub const Above: Self = Self::Above
pub const AboveEqual: Self = Self::AboveEqual
pub const Equal: Self = Self::Equal
pub const Less: Self = Self::Less
pub const LessEqual: Self = Self::LessEqual
pub const Greater: Self = Self::Greater
pub const GreaterEqual: Self = Self::GreaterEqual
pub const NotBelow: Self = Self::NotBelow
pub const NotBelowEqual: Self = Self::NotBelowEqual
pub const NotAbove: Self = Self::NotAbove
pub const NotAboveEqual: Self = Self::NotAboveEqual
pub const NotEqual: Self = Self::NotEqual
pub const NotLess: Self = Self::NotLess
pub const NotLessEqual: Self = Self::NotLessEqual
pub const NotGreater: Self = Self::NotGreater
pub const NotGreaterEqual: Self = Self::NotGreaterEqual
pub const Zero: Self = Self::Zero
pub const NotZero: Self = Self::NotZero
pub const Parity: Self = Self::Parity
pub const NotParity: Self = Self::NotParity
pub const Count: Self = Self::Count
Trait Implementations§
Source§impl Clone for ConditionX64
impl Clone for ConditionX64
Source§fn clone(&self) -> ConditionX64
fn clone(&self) -> ConditionX64
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ConditionX64
Source§impl Debug for ConditionX64
impl Debug for ConditionX64
impl Eq for ConditionX64
Source§impl Hash for ConditionX64
impl Hash for ConditionX64
Source§impl PartialEq for ConditionX64
impl PartialEq for ConditionX64
Source§fn eq(&self, other: &ConditionX64) -> bool
fn eq(&self, other: &ConditionX64) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConditionX64
Auto Trait Implementations§
impl Freeze for ConditionX64
impl RefUnwindSafe for ConditionX64
impl Send for ConditionX64
impl Sync for ConditionX64
impl Unpin for ConditionX64
impl UnsafeUnpin for ConditionX64
impl UnwindSafe for ConditionX64
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