Struct capstone::instruction::Insn [-] [+] [src]

pub struct Insn {
    pub address: u64,
    pub size: u16,
    pub bytes: [u8; 16usize],
    pub mnemonic: [c_char; 32usize],
    pub op_str: [c_char; 160usize],
    // some fields omitted
}

Fields

address
size
bytes
mnemonic
op_str

Methods

impl Insn

fn mnemonic(&self) -> Option<&str>

fn op_str(&self) -> Option<&str>

Trait Implementations

impl Debug for Insn

fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>