#[repr(u32)]pub enum ConditionA64 {
Show 16 variants
Equal = 0,
NotEqual = 1,
CarrySet = 2,
CarryClear = 3,
Minus = 4,
Plus = 5,
Overflow = 6,
NoOverflow = 7,
UnsignedGreater = 8,
UnsignedLessEqual = 9,
GreaterEqual = 10,
Less = 11,
Greater = 12,
LessEqual = 13,
Always = 14,
Count = 15,
}Variants§
Equal = 0
NotEqual = 1
CarrySet = 2
CarryClear = 3
Minus = 4
Plus = 5
Overflow = 6
NoOverflow = 7
UnsignedGreater = 8
UnsignedLessEqual = 9
GreaterEqual = 10
Less = 11
Greater = 12
LessEqual = 13
Always = 14
Count = 15
Implementations§
Source§impl ConditionA64
impl ConditionA64
pub const Equal: Self = Self::Equal
pub const NotEqual: Self = Self::NotEqual
pub const CarrySet: Self = Self::CarrySet
pub const CarryClear: Self = Self::CarryClear
pub const Minus: Self = Self::Minus
pub const Plus: Self = Self::Plus
pub const Overflow: Self = Self::Overflow
pub const NoOverflow: Self = Self::NoOverflow
pub const UnsignedGreater: Self = Self::UnsignedGreater
pub const UnsignedLessEqual: Self = Self::UnsignedLessEqual
pub const GreaterEqual: Self = Self::GreaterEqual
pub const Less: Self = Self::Less
pub const Greater: Self = Self::Greater
pub const LessEqual: Self = Self::LessEqual
pub const Always: Self = Self::Always
pub const Count: Self = Self::Count
pub const UnsignedLess: Self = Self::CarryClear
pub const UnsignedGreaterEqual: Self = Self::CarrySet
Trait Implementations§
Source§impl Clone for ConditionA64
impl Clone for ConditionA64
Source§fn clone(&self) -> ConditionA64
fn clone(&self) -> ConditionA64
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 ConditionA64
Source§impl Debug for ConditionA64
impl Debug for ConditionA64
impl Eq for ConditionA64
Source§impl Hash for ConditionA64
impl Hash for ConditionA64
Source§impl PartialEq for ConditionA64
impl PartialEq for ConditionA64
Source§fn eq(&self, other: &ConditionA64) -> bool
fn eq(&self, other: &ConditionA64) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConditionA64
Auto Trait Implementations§
impl Freeze for ConditionA64
impl RefUnwindSafe for ConditionA64
impl Send for ConditionA64
impl Sync for ConditionA64
impl Unpin for ConditionA64
impl UnsafeUnpin for ConditionA64
impl UnwindSafe for ConditionA64
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