Enum capstone_sys::m680x_op_type[][src]

#[repr(u32)]pub enum m680x_op_type {
    M680X_OP_INVALID,
    M680X_OP_REGISTER,
    M680X_OP_IMMEDIATE,
    M680X_OP_INDEXED,
    M680X_OP_EXTENDED,
    M680X_OP_DIRECT,
    M680X_OP_RELATIVE,
    M680X_OP_CONSTANT,
}

Operand type for instruction’s operands

Variants

M680X_OP_INVALID

< = CS_OP_INVALID (Uninitialized).

M680X_OP_REGISTER

< = Register operand.

M680X_OP_IMMEDIATE

< = Immediate operand.

M680X_OP_INDEXED

< = Indexed addressing operand.

M680X_OP_EXTENDED

< = Extended addressing operand.

M680X_OP_DIRECT

< = Direct addressing operand.

M680X_OP_RELATIVE

< = Relative addressing operand.

M680X_OP_CONSTANT

< = constant operand (Displayed as number only). < Used e.g. for a bit index or page number.

Trait Implementations

impl Clone for m680x_op_type[src]

impl Copy for m680x_op_type[src]

impl Debug for m680x_op_type[src]

impl Eq for m680x_op_type[src]

impl Hash for m680x_op_type[src]

impl PartialEq<m680x_op_type> for m680x_op_type[src]

impl StructuralEq for m680x_op_type[src]

impl StructuralPartialEq for m680x_op_type[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.