r_anal_op_t

Struct r_anal_op_t 

Source
#[repr(C)]
pub struct r_anal_op_t {
Show 36 fields pub mnemonic: *mut c_char, pub addr: c_ulonglong, pub type_: c_uint, pub prefix: RAnalOpPrefix, pub type2: c_uint, pub stackop: RAnalStackOp, pub cond: _RAnalCond, pub size: c_int, pub nopcode: c_int, pub cycles: c_int, pub failcycles: c_int, pub family: RAnalOpFamily, pub id: c_int, pub eob: bool, pub sign: bool, pub delay: c_int, pub jump: c_ulonglong, pub fail: c_ulonglong, pub direction: RAnalOpDirection, pub ptr: c_longlong, pub val: c_ulonglong, pub ptrsize: c_int, pub stackptr: c_longlong, pub refptr: c_int, pub src: [*mut RAnalValue; 3], pub dst: *mut RAnalValue, pub access: *mut RList, pub esil: RStrBuf, pub opex: RStrBuf, pub reg: *const c_char, pub ireg: *const c_char, pub scale: c_int, pub disp: c_ulonglong, pub switch_op: *mut RAnalSwitchOp, pub hint: RAnalHint, pub datatype: RAnalDataType,
}

Fields§

§mnemonic: *mut c_char§addr: c_ulonglong§type_: c_uint§prefix: RAnalOpPrefix§type2: c_uint§stackop: RAnalStackOp§cond: _RAnalCond§size: c_int§nopcode: c_int§cycles: c_int§failcycles: c_int§family: RAnalOpFamily§id: c_int§eob: bool§sign: bool§delay: c_int§jump: c_ulonglong§fail: c_ulonglong§direction: RAnalOpDirection§ptr: c_longlong§val: c_ulonglong§ptrsize: c_int§stackptr: c_longlong§refptr: c_int§src: [*mut RAnalValue; 3]§dst: *mut RAnalValue§access: *mut RList§esil: RStrBuf§opex: RStrBuf§reg: *const c_char§ireg: *const c_char§scale: c_int§disp: c_ulonglong§switch_op: *mut RAnalSwitchOp§hint: RAnalHint§datatype: RAnalDataType

Trait Implementations§

Source§

impl Clone for r_anal_op_t

Source§

fn clone(&self) -> r_anal_op_t

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for r_anal_op_t

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for r_anal_op_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.