Struct object::read::macho::MachOSymbolTable
source · pub struct MachOSymbolTable<'data, 'file, Mach, R = &'data [u8]>where
Mach: MachHeader,
R: ReadRef<'data>,{ /* private fields */ }
Expand description
A symbol table of a MachOFile
.
Trait Implementations§
source§impl<'data, 'file, Mach, R> Clone for MachOSymbolTable<'data, 'file, Mach, R>where
Mach: MachHeader + Clone,
R: ReadRef<'data> + Clone,
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>
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'data, 'file, Mach, R> Debug for MachOSymbolTable<'data, 'file, Mach, R>where
Mach: MachHeader + Debug,
R: ReadRef<'data> + Debug,
impl<'data, 'file, Mach, R> Debug for MachOSymbolTable<'data, 'file, Mach, R>where
Mach: MachHeader + Debug,
R: ReadRef<'data> + Debug,
source§impl<'data, 'file, Mach, R> ObjectSymbolTable<'data> for MachOSymbolTable<'data, 'file, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach, R> ObjectSymbolTable<'data> for MachOSymbolTable<'data, 'file, Mach, R>where
Mach: MachHeader,
R: ReadRef<'data>,
§type Symbol = MachOSymbol<'data, 'file, Mach, R>
type Symbol = MachOSymbol<'data, 'file, Mach, R>
A symbol table entry.
§type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>
type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>
An iterator over the symbols in a symbol table.
source§fn symbols(&self) -> Self::SymbolIterator
fn symbols(&self) -> Self::SymbolIterator
Get an iterator over the symbols in the table. Read more
source§fn symbol_by_index(&self, index: SymbolIndex) -> Result<Self::Symbol>
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Self::Symbol>
Get the symbol at the given index. Read more