pub enum CondCode {
Show 16 variants
O = 0,
NO = 1,
C = 2,
NC = 3,
Z = 4,
NZ = 5,
BE = 6,
A = 7,
S = 8,
NS = 9,
P = 10,
NP = 11,
L = 12,
GE = 13,
LE = 14,
G = 15,
}Variants§
O = 0
NO = 1
C = 2
NC = 3
Z = 4
NZ = 5
BE = 6
A = 7
S = 8
NS = 9
P = 10
NP = 11
L = 12
GE = 13
LE = 14
G = 15
Implementations§
Source§impl CondCode
impl CondCode
pub const B: Self = Self::C
pub const NAE: Self = Self::C
pub const AE: Self = Self::NC
pub const NB: Self = Self::NC
pub const E: Self = Self::Z
pub const NE: Self = Self::NZ
pub const NA: Self = Self::BE
pub const NBE: Self = Self::A
pub const PO: Self = Self::NP
pub const NGE: Self = Self::L
pub const NL: Self = Self::GE
pub const NG: Self = Self::LE
pub const NLE: Self = Self::G
pub const PE: Self = Self::P
pub const fn code(self) -> u8
pub fn invert(self) -> Self
Trait Implementations§
impl Copy for CondCode
impl Eq for CondCode
impl StructuralPartialEq for CondCode
Auto Trait Implementations§
impl Freeze for CondCode
impl RefUnwindSafe for CondCode
impl Send for CondCode
impl Sync for CondCode
impl Unpin for CondCode
impl UnsafeUnpin for CondCode
impl UnwindSafe for CondCode
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