Trait object::read::ObjectSymbolTable
source · pub trait ObjectSymbolTable<'data>: Sealed {
type Symbol: ObjectSymbol<'data>;
type SymbolIterator: Iterator<Item = Self::Symbol>;
// Required methods
fn symbols(&self) -> Self::SymbolIterator;
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Self::Symbol>;
}
Expand description
A symbol table.
Required Associated Types§
sourcetype Symbol: ObjectSymbol<'data>
type Symbol: ObjectSymbol<'data>
A symbol table entry.
sourcetype SymbolIterator: Iterator<Item = Self::Symbol>
type SymbolIterator: Iterator<Item = Self::Symbol>
An iterator over the symbols in a symbol table.
Required Methods§
sourcefn symbols(&self) -> Self::SymbolIterator
fn symbols(&self) -> Self::SymbolIterator
Get an iterator over the symbols in the table.
This may skip over symbols that are malformed or unsupported.
sourcefn 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.
The meaning of the index depends on the object file.
Returns an error if the index is invalid.