[][src]Struct goblin::mach::symbols::Nlist32

#[repr(C)]pub struct Nlist32 {
    pub n_strx: u32,
    pub n_type: u8,
    pub n_sect: u8,
    pub n_desc: u16,
    pub n_value: u32,
}

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: u32

value of this symbol (or stab offset)

Trait Implementations

impl Clone for Nlist32[src]

impl Copy for Nlist32[src]

impl Debug for Nlist32[src]

impl From<Nlist> for Nlist32[src]

impl From<Nlist32> for Nlist[src]

impl FromCtx<Endian, [u8]> for Nlist32[src]

impl<'a> IntoCtx<Endian, [u8]> for &'a Nlist32[src]

impl IntoCtx<Endian, [u8]> for Nlist32[src]

impl SizeWith<Endian> for Nlist32[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for Nlist32 where
    Nlist32: 'a, 
[src]

type Error = Error

impl<'a> TryIntoCtx<Endian, [u8]> for &'a Nlist32[src]

type Error = Error

impl TryIntoCtx<Endian, [u8]> for Nlist32[src]

type Error = Error

Auto Trait Implementations

impl RefUnwindSafe for Nlist32

impl Send for Nlist32

impl Sync for Nlist32

impl Unpin for Nlist32

impl UnwindSafe for Nlist32

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.