[][src]Struct capstone::InsnDetail

pub struct InsnDetail<'a>(_, _);

Contains architecture-independent details about an instruction, such as register reads.

To get additional architecture-specific information, use the arch_detail() method to get an ArchDetail enum.

Methods

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

Important traits for RegsIter<'a, T>
pub fn regs_read(&self) -> RegsIter<RegIdInt>[src]

Returns the implicit read registers

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

Returns the number of implicit read registers

Important traits for RegsIter<'a, T>
pub fn regs_write(&self) -> RegsIter<RegIdInt>[src]

Returns the implicit write registers

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

Returns the number of implicit write registers

Important traits for InsnGroupIter<'a>
pub fn groups(&self) -> InsnGroupIter[src]

Returns the groups to which this instruction belongs

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

Returns the number groups to which this instruction belongs

pub fn arch_detail(&self) -> ArchDetail[src]

Architecture-specific detail

Trait Implementations

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

Auto Trait Implementations

impl<'a> Send for InsnDetail<'a>

impl<'a> Sync for InsnDetail<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.