pub struct Nlist {
pub n_strx: usize,
pub n_type: u8,
pub n_sect: usize,
pub n_desc: u16,
pub n_value: u64,
}Fields§
§n_strx: usizeindex into the string table
n_type: u8type flag, see below
n_sect: usizesection number or NO_SECT
n_desc: u16see <mach-o/stab.h>
n_value: u64value of this symbol (or stab offset)
Implementations§
Trait Implementations§
Source§impl<'a> TryFromCtx<'a, Ctx> for Nlist
impl<'a> TryFromCtx<'a, Ctx> for Nlist
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