Enum capstone_sys::mips_op_type
source · [−]#[repr(u32)]
pub enum mips_op_type {
MIPS_OP_INVALID,
MIPS_OP_REG,
MIPS_OP_IMM,
MIPS_OP_MEM,
}Expand description
Operand type for instruction’s operands
Variants
MIPS_OP_INVALID
< = CS_OP_INVALID (Uninitialized).
MIPS_OP_REG
< = CS_OP_REG (Register operand).
MIPS_OP_IMM
< = CS_OP_IMM (Immediate operand).
MIPS_OP_MEM
< = CS_OP_MEM (Memory operand).
Trait Implementations
sourceimpl Clone for mips_op_type
impl Clone for mips_op_type
sourcefn clone(&self) -> mips_op_type
fn clone(&self) -> mips_op_type
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for mips_op_type
impl Debug for mips_op_type
sourceimpl Hash for mips_op_type
impl Hash for mips_op_type
sourceimpl PartialEq<mips_op_type> for mips_op_type
impl PartialEq<mips_op_type> for mips_op_type
impl Copy for mips_op_type
impl Eq for mips_op_type
impl StructuralEq for mips_op_type
impl StructuralPartialEq for mips_op_type
Auto Trait Implementations
impl RefUnwindSafe for mips_op_type
impl Send for mips_op_type
impl Sync for mips_op_type
impl Unpin for mips_op_type
impl UnwindSafe for mips_op_type
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more