Struct capstone_sys::x86::x86_op_mem [] [src]

pub struct x86_op_mem {
    pub segment: c_uint,
    pub base: c_uint,
    pub index: c_uint,
    pub scale: c_int,
    pub disp: i64,
}

Instruction's operand referring to memory This is associated with X86_OP_MEM operand type above

Fields

segment
base
index
scale
disp

Trait Implementations

Derived Implementations

impl Clone for x86_op_mem
[src]

fn clone(&self) -> x86_op_mem

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for x86_op_mem
[src]