Enum capstone_sys::m680x_op_type
source · #[repr(u32)]pub enum m680x_op_type {
M680X_OP_INVALID = 0,
M680X_OP_REGISTER = 1,
M680X_OP_IMMEDIATE = 2,
M680X_OP_INDEXED = 3,
M680X_OP_EXTENDED = 4,
M680X_OP_DIRECT = 5,
M680X_OP_RELATIVE = 6,
M680X_OP_CONSTANT = 7,
}
Expand description
Operand type for instruction’s operands
Variants§
M680X_OP_INVALID = 0
< = CS_OP_INVALID (Uninitialized).
M680X_OP_REGISTER = 1
< = Register operand.
M680X_OP_IMMEDIATE = 2
< = Immediate operand.
M680X_OP_INDEXED = 3
< = Indexed addressing operand.
M680X_OP_EXTENDED = 4
< = Extended addressing operand.
M680X_OP_DIRECT = 5
< = Direct addressing operand.
M680X_OP_RELATIVE = 6
< = Relative addressing operand.
M680X_OP_CONSTANT = 7
< = constant operand (Displayed as number only). < Used e.g. for a bit index or page number.
Trait Implementations§
source§impl Clone for m680x_op_type
impl Clone for m680x_op_type
source§fn clone(&self) -> m680x_op_type
fn clone(&self) -> m680x_op_type
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 m680x_op_type
impl Debug for m680x_op_type
source§impl Hash for m680x_op_type
impl Hash for m680x_op_type
source§impl PartialEq for m680x_op_type
impl PartialEq for m680x_op_type
source§fn eq(&self, other: &m680x_op_type) -> bool
fn eq(&self, other: &m680x_op_type) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for m680x_op_type
impl Eq for m680x_op_type
impl StructuralPartialEq for m680x_op_type
Auto Trait Implementations§
impl RefUnwindSafe for m680x_op_type
impl Send for m680x_op_type
impl Sync for m680x_op_type
impl Unpin for m680x_op_type
impl UnwindSafe for m680x_op_type
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