#[repr(C)]pub struct Nlist64 {
pub n_strx: u32,
pub n_type: u8,
pub n_sect: u8,
pub n_desc: u16,
pub n_value: u64,
}
Fields§
§n_strx: u32
index into the string table
n_type: u8
type flag, see below
n_sect: u8
section number or NO_SECT
n_desc: u16
see <mach-o/stab.h>
n_value: u64
value of this symbol (or stab offset)
Trait Implementations§
source§impl<'a> TryIntoCtx<Endian> for &'a Nlist64
impl<'a> TryIntoCtx<Endian> for &'a Nlist64
source§impl TryIntoCtx<Endian> for Nlist64
impl TryIntoCtx<Endian> for Nlist64
impl Copy for Nlist64
Auto Trait Implementations§
impl RefUnwindSafe for Nlist64
impl Send for Nlist64
impl Sync for Nlist64
impl Unpin for Nlist64
impl UnwindSafe for Nlist64
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