Enum capstone_sys::tms320c64x_op_type
source · #[repr(u32)]pub enum tms320c64x_op_type {
TMS320C64X_OP_INVALID = 0,
TMS320C64X_OP_REG = 1,
TMS320C64X_OP_IMM = 2,
TMS320C64X_OP_MEM = 3,
TMS320C64X_OP_REGPAIR = 64,
}
Variants§
TMS320C64X_OP_INVALID = 0
< = CS_OP_INVALID (Uninitialized).
TMS320C64X_OP_REG = 1
< = CS_OP_REG (Register operand).
TMS320C64X_OP_IMM = 2
< = CS_OP_IMM (Immediate operand).
TMS320C64X_OP_MEM = 3
< = CS_OP_MEM (Memory operand).
TMS320C64X_OP_REGPAIR = 64
< Register pair for double word ops
Trait Implementations§
source§impl Clone for tms320c64x_op_type
impl Clone for tms320c64x_op_type
source§fn clone(&self) -> tms320c64x_op_type
fn clone(&self) -> tms320c64x_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 tms320c64x_op_type
impl Debug for tms320c64x_op_type
source§impl Hash for tms320c64x_op_type
impl Hash for tms320c64x_op_type
source§impl PartialEq for tms320c64x_op_type
impl PartialEq for tms320c64x_op_type
source§fn eq(&self, other: &tms320c64x_op_type) -> bool
fn eq(&self, other: &tms320c64x_op_type) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for tms320c64x_op_type
impl Eq for tms320c64x_op_type
impl StructuralPartialEq for tms320c64x_op_type
Auto Trait Implementations§
impl RefUnwindSafe for tms320c64x_op_type
impl Send for tms320c64x_op_type
impl Sync for tms320c64x_op_type
impl Unpin for tms320c64x_op_type
impl UnwindSafe for tms320c64x_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