Struct frida_gum_sys::cs_insn[][src]

#[repr(C)]pub struct cs_insn {
    pub id: c_uint,
    pub address: u64,
    pub size: u16,
    pub bytes: [u8; 24],
    pub mnemonic: [c_char; 32],
    pub op_str: [c_char; 160],
    pub detail: *mut cs_detail,
}

Fields

id: c_uintaddress: u64size: u16bytes: [u8; 24]mnemonic: [c_char; 32]op_str: [c_char; 160]detail: *mut cs_detail

Trait Implementations

impl Clone for cs_insn[src]

impl Copy for cs_insn[src]

Auto Trait Implementations

impl RefUnwindSafe for cs_insn

impl !Send for cs_insn

impl !Sync for cs_insn

impl Unpin for cs_insn

impl UnwindSafe for cs_insn

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.