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

#[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

impl Copy for Nlist64[src]

impl From<Nlist64> for Nlist[src]

impl From<Nlist> for Nlist64[src]

impl Clone for Nlist64[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Nlist64[src]

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

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

type Error = Error

type Size = usize

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

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

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

impl SizeWith<Endian> for Nlist64[src]

type Units = usize

Auto Trait Implementations

impl Send for Nlist64

impl Unpin for Nlist64

impl Sync for Nlist64

impl UnwindSafe for Nlist64

impl RefUnwindSafe for Nlist64

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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