object::read::macho

Type Alias MachOSymbolTable32

Source
pub type MachOSymbolTable32<'data, 'file, Endian = Endianness, R = &'data [u8]> = MachOSymbolTable<'data, 'file, MachHeader32<Endian>, R>;
Expand description

A symbol table in a MachOFile32.

Aliased Type§

struct MachOSymbolTable32<'data, 'file, Endian = Endianness, R = &'data [u8]> { /* private fields */ }

Trait Implementations

Source§

impl<'data, 'file, Mach, R> Clone for MachOSymbolTable<'data, 'file, Mach, R>
where Mach: MachHeader + Clone, R: ReadRef<'data> + Clone,

Source§

fn clone(&self) -> MachOSymbolTable<'data, 'file, Mach, R>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'data, 'file, Mach, R> Debug for MachOSymbolTable<'data, 'file, Mach, R>
where Mach: MachHeader + Debug, R: ReadRef<'data> + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'data, 'file, Mach, R> ObjectSymbolTable<'data> for MachOSymbolTable<'data, 'file, Mach, R>
where Mach: MachHeader, R: ReadRef<'data>,

Source§

type Symbol = MachOSymbol<'data, 'file, Mach, R>

A symbol table entry.
Source§

type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>

An iterator for the symbols in a symbol table.
Source§

fn symbols(&self) -> Self::SymbolIterator

Get an iterator for the symbols in the table. Read more
Source§

fn symbol_by_index(&self, index: SymbolIndex) -> Result<Self::Symbol>

Get the symbol at the given index. Read more
Source§

impl<'data, 'file, Mach, R> Copy for MachOSymbolTable<'data, 'file, Mach, R>
where Mach: MachHeader + Copy, R: ReadRef<'data> + Copy,