#[repr(C)]pub struct nlist {
pub n_name: *const c_char,
pub n_type: c_uchar,
pub n_other: c_char,
pub n_desc: c_short,
pub n_value: c_ulong,
}Fields§
§n_name: *const c_charsymbol name (in memory)
n_type: c_uchartype defines
n_other: c_char“type” and binding information
n_desc: c_shortused by stab entries
n_value: c_ulongTrait Implementations§
Auto Trait Implementations§
impl Freeze for nlist
impl RefUnwindSafe for nlist
impl !Send for nlist
impl !Sync for nlist
impl Unpin for nlist
impl UnwindSafe for nlist
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