#[repr(C)]pub struct IdaxLocalVariable {
pub name: *mut c_char,
pub type_name: *mut c_char,
pub is_argument: c_int,
pub width: c_int,
pub has_user_name: c_int,
pub storage: c_int,
pub comment: *mut c_char,
}Fields§
§name: *mut c_char§type_name: *mut c_char§is_argument: c_int§width: c_int§has_user_name: c_int§storage: c_int< 0=unknown, 1=register, 2=stack
comment: *mut c_charTrait Implementations§
Source§impl Clone for IdaxLocalVariable
impl Clone for IdaxLocalVariable
Source§fn clone(&self) -> IdaxLocalVariable
fn clone(&self) -> IdaxLocalVariable
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 IdaxLocalVariable
impl Debug for IdaxLocalVariable
Source§impl Default for IdaxLocalVariable
impl Default for IdaxLocalVariable
impl Copy for IdaxLocalVariable
Auto Trait Implementations§
impl Freeze for IdaxLocalVariable
impl RefUnwindSafe for IdaxLocalVariable
impl !Send for IdaxLocalVariable
impl !Sync for IdaxLocalVariable
impl Unpin for IdaxLocalVariable
impl UnsafeUnpin for IdaxLocalVariable
impl UnwindSafe for IdaxLocalVariable
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