#[repr(C)]pub struct r_anal_var_t {
pub fcn: *mut RAnalFunction,
pub name: *mut c_char,
pub type_: *mut c_char,
pub kind: RAnalVarKind,
pub isarg: bool,
pub delta: c_int,
pub regname: *mut c_char,
pub accesses: RVector,
pub comment: *mut c_char,
pub constraints: RVector,
pub argnum: c_int,
}
Fields§
§fcn: *mut RAnalFunction
§name: *mut c_char
§type_: *mut c_char
§kind: RAnalVarKind
§isarg: bool
§delta: c_int
§regname: *mut c_char
§accesses: RVector
§comment: *mut c_char
§constraints: RVector
§argnum: c_int
Trait Implementations§
Source§impl Clone for r_anal_var_t
impl Clone for r_anal_var_t
Source§fn clone(&self) -> r_anal_var_t
fn clone(&self) -> r_anal_var_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for r_anal_var_t
impl Debug for r_anal_var_t
impl Copy for r_anal_var_t
Auto Trait Implementations§
impl Freeze for r_anal_var_t
impl RefUnwindSafe for r_anal_var_t
impl !Send for r_anal_var_t
impl !Sync for r_anal_var_t
impl Unpin for r_anal_var_t
impl UnwindSafe for r_anal_var_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more