Struct capstone::Insn[][src]

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

A wrapper for the raw capstone-sys instruction

Implementations

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.

The mnemonic for the instruction

The operand string associated with the instruction

Access instruction id

Instruction address

Byte-level representation of the instruction

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.