Struct Nlist64
struct Nlist64<E: Endian> { ... }
Fields
n_strx: crate::endian::U32<E>index into the string table
n_type: u8type flag, see below
n_sect: u8section number or NO_SECT
n_desc: crate::endian::U16<E>see <mach-o/stab.h>
n_value: crate::endian::U64Bytes<E>value of this symbol (or stab offset)
Implementations
impl<E> Freeze for Nlist64<E>
impl<E> RefUnwindSafe for Nlist64<E>
impl<E> Send for Nlist64<E>
impl<E> Sync for Nlist64<E>
impl<E> Unpin for Nlist64<E>
impl<E> UnwindSafe for Nlist64<E>
impl<E: $crate::clone::Clone + Endian> Clone for Nlist64<E>
fn clone(self: &Self) -> Nlist64<E>
impl<E: $crate::fmt::Debug + Endian> Debug for Nlist64<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for Nlist64<E>
impl<E: Endian> Pod for Nlist64<E>
impl<Endian: endian::Endian> Nlist for macho::Nlist64<Endian>
fn n_strx(self: &Self, endian: <Self as >::Endian) -> u32fn n_type(self: &Self) -> u8fn n_sect(self: &Self) -> u8fn n_desc(self: &Self, endian: <Self as >::Endian) -> u16fn n_value(self: &Self, endian: <Self as >::Endian) -> <Self as >::Word
impl<T> Any for Nlist64<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Nlist64<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Nlist64<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Nlist64<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Nlist64<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Nlist64<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Nlist64<E>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Nlist64<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Nlist64<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>