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

A single disassembled CPU instruction.

Detail

To learn how to get more instruction details, see InsnDetail.

Implementations

Create an Insn from a raw pointer to a capstone_sys::cs_insn.

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

Safety

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 caller is fully responsible for the backing allocations lifetime, including freeing.

The mnemonic for the instruction

The operand string associated with the instruction

Access instruction id

Size of instruction (in bytes)

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

Converts to this type from the input type.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.