[][src]Struct capstone::Insn

pub struct Insn<'a> { /* fields omitted */ }

A wrapper for the raw capstone-sys instruction

Methods

impl<'a> Insn<'a>[src]

pub fn mnemonic(&self) -> Option<&str>[src]

The mnemonic for the instruction

pub fn op_str(&self) -> Option<&str>[src]

The operand string associated with the instruction

pub fn id(&self) -> InsnId[src]

Access instruction id

pub fn address(&self) -> u64[src]

Instruction address

pub fn bytes(&self) -> &[u8][src]

Byte-level representation of the instruction

Trait Implementations

impl<'a> Debug for Insn<'a>[src]

impl<'a> Display for Insn<'a>[src]

Auto Trait Implementations

impl<'a> !Send for Insn<'a>

impl<'a> !Sync for Insn<'a>

impl<'a> Unpin for Insn<'a>

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> ToString for T where
    T: Display + ?Sized
[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.