Struct capstone::Insn[][src]

#[repr(transparent)]pub struct Insn<'a> { /* fields omitted */ }

A wrapper for the raw capstone-sys instruction

Implementations

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

pub unsafe fn from_raw(insn: *const cs_insn) -> Self[src]

Create an Insn from a raw pointer to a capstone cs_insn.

This function serves to allow integration with libraries which generate cs_insn’s internally.

Note that this function is unsafe, and assumes that you know what you are doing. In particular, it generates a lifetime for the Insn from nothing, and that lifetime is in no-way actually tied to the cs_insn itself. It is the responsibility of the caller to ensure that the resulting Insn lives only as long as the cs_insn. This function assumes that the pointer passed is non-null and a valid cs_insn pointer.

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.