Enum capstone_sys::x86_xop_cc
source · #[repr(u32)]pub enum x86_xop_cc {
X86_XOP_CC_INVALID = 0,
X86_XOP_CC_LT = 1,
X86_XOP_CC_LE = 2,
X86_XOP_CC_GT = 3,
X86_XOP_CC_GE = 4,
X86_XOP_CC_EQ = 5,
X86_XOP_CC_NEQ = 6,
X86_XOP_CC_FALSE = 7,
X86_XOP_CC_TRUE = 8,
}
Expand description
XOP Code Condition type
Variants§
X86_XOP_CC_INVALID = 0
< Uninitialized.
X86_XOP_CC_LT = 1
X86_XOP_CC_LE = 2
X86_XOP_CC_GT = 3
X86_XOP_CC_GE = 4
X86_XOP_CC_EQ = 5
X86_XOP_CC_NEQ = 6
X86_XOP_CC_FALSE = 7
X86_XOP_CC_TRUE = 8
Trait Implementations§
source§impl Clone for x86_xop_cc
impl Clone for x86_xop_cc
source§fn clone(&self) -> x86_xop_cc
fn clone(&self) -> x86_xop_cc
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for x86_xop_cc
impl Debug for x86_xop_cc
source§impl Hash for x86_xop_cc
impl Hash for x86_xop_cc
source§impl PartialEq for x86_xop_cc
impl PartialEq for x86_xop_cc
source§fn eq(&self, other: &x86_xop_cc) -> bool
fn eq(&self, other: &x86_xop_cc) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for x86_xop_cc
impl Eq for x86_xop_cc
impl StructuralPartialEq for x86_xop_cc
Auto Trait Implementations§
impl RefUnwindSafe for x86_xop_cc
impl Send for x86_xop_cc
impl Sync for x86_xop_cc
impl Unpin for x86_xop_cc
impl UnwindSafe for x86_xop_cc
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