Skip to main content

ConditionX64

Enum ConditionX64 

Source
#[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

Source

pub const Overflow: Self = Self::Overflow

Source

pub const NoOverflow: Self = Self::NoOverflow

Source

pub const Carry: Self = Self::Carry

Source

pub const NoCarry: Self = Self::NoCarry

Source

pub const Below: Self = Self::Below

Source

pub const BelowEqual: Self = Self::BelowEqual

Source

pub const Above: Self = Self::Above

Source

pub const AboveEqual: Self = Self::AboveEqual

Source

pub const Equal: Self = Self::Equal

Source

pub const Less: Self = Self::Less

Source

pub const LessEqual: Self = Self::LessEqual

Source

pub const Greater: Self = Self::Greater

Source

pub const GreaterEqual: Self = Self::GreaterEqual

Source

pub const NotBelow: Self = Self::NotBelow

Source

pub const NotBelowEqual: Self = Self::NotBelowEqual

Source

pub const NotAbove: Self = Self::NotAbove

Source

pub const NotAboveEqual: Self = Self::NotAboveEqual

Source

pub const NotEqual: Self = Self::NotEqual

Source

pub const NotLess: Self = Self::NotLess

Source

pub const NotLessEqual: Self = Self::NotLessEqual

Source

pub const NotGreater: Self = Self::NotGreater

Source

pub const NotGreaterEqual: Self = Self::NotGreaterEqual

Source

pub const Zero: Self = Self::Zero

Source

pub const NotZero: Self = Self::NotZero

Source

pub const Parity: Self = Self::Parity

Source

pub const NotParity: Self = Self::NotParity

Source

pub const Count: Self = Self::Count

Trait Implementations§

Source§

impl Clone for ConditionX64

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl Copy for ConditionX64

Source§

impl Debug for ConditionX64

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for ConditionX64

Source§

impl Hash for ConditionX64

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for ConditionX64

Source§

fn eq(&self, other: &ConditionX64) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for ConditionX64

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.