[][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]

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

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

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>

impl<'a> Unpin for InsnDetail<'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, 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.