[][src]Struct object::read::macho::SymbolTable

pub struct SymbolTable<'data, Mach: MachHeader> { /* fields omitted */ }

A table of symbol entries in a Mach-O file.

Also includes the string table used for the symbol names.

Implementations

impl<'data, Mach: MachHeader> SymbolTable<'data, Mach>[src]

pub fn strings(&self) -> StringTable<'data>[src]

Return the string table used for the symbol names.

pub fn iter(&self) -> Iter<'data, Mach::Nlist>[src]

Iterate over the symbols.

pub fn is_empty(&self) -> bool[src]

Return true if the symbol table is empty.

pub fn symbol(&self, index: usize) -> Result<&'data Mach::Nlist>[src]

Return the symbol at the given index.

Trait Implementations

impl<'data, Mach: Clone + MachHeader> Clone for SymbolTable<'data, Mach> where
    Mach::Nlist: Clone
[src]

impl<'data, Mach: Copy + MachHeader> Copy for SymbolTable<'data, Mach> where
    Mach::Nlist: Copy
[src]

impl<'data, Mach: Debug + MachHeader> Debug for SymbolTable<'data, Mach> where
    Mach::Nlist: Debug
[src]

impl<'data, Mach: MachHeader> Default for SymbolTable<'data, Mach>[src]

Auto Trait Implementations

impl<'data, Mach> RefUnwindSafe for SymbolTable<'data, Mach> where
    <Mach as MachHeader>::Nlist: RefUnwindSafe

impl<'data, Mach> Send for SymbolTable<'data, Mach> where
    <Mach as MachHeader>::Nlist: Sync

impl<'data, Mach> Sync for SymbolTable<'data, Mach> where
    <Mach as MachHeader>::Nlist: Sync

impl<'data, Mach> Unpin for SymbolTable<'data, Mach>

impl<'data, Mach> UnwindSafe for SymbolTable<'data, Mach> where
    <Mach as MachHeader>::Nlist: RefUnwindSafe

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.