Struct Nlist32
struct Nlist32<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::U32<E>value of this symbol (or stab offset)
Implementations
impl<E> Freeze for Nlist32<E>
impl<E> RefUnwindSafe for Nlist32<E>
impl<E> Send for Nlist32<E>
impl<E> Sync for Nlist32<E>
impl<E> Unpin for Nlist32<E>
impl<E> UnwindSafe for Nlist32<E>
impl<E: $crate::clone::Clone + Endian> Clone for Nlist32<E>
fn clone(self: &Self) -> Nlist32<E>
impl<E: $crate::fmt::Debug + Endian> Debug for Nlist32<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for Nlist32<E>
impl<E: Endian> Pod for Nlist32<E>
impl<Endian: endian::Endian> Nlist for macho::Nlist32<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 Nlist32<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Nlist32<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Nlist32<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Nlist32<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Nlist32<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Nlist32<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Nlist32<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 Nlist32<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Nlist32<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>