Struct object::read::SymbolTable  
source · [−]pub struct SymbolTable<'data, 'file> where
    'data: 'file,  { /* private fields */ }Expand description
A symbol table.
Trait Implementations
sourceimpl<'data, 'file> Debug for SymbolTable<'data, 'file> where
    'data: 'file, 
 
impl<'data, 'file> Debug for SymbolTable<'data, 'file> where
    'data: 'file, 
sourceimpl<'data, 'file> ObjectSymbolTable<'data> for SymbolTable<'data, 'file>
 
impl<'data, 'file> ObjectSymbolTable<'data> for SymbolTable<'data, 'file>
type SymbolIterator = SymbolIterator<'data, 'file>
type SymbolIterator = SymbolIterator<'data, 'file>
An iterator over the symbols in a symbol table.
sourcefn symbols(&self) -> Self::SymbolIterator
 
fn symbols(&self) -> Self::SymbolIterator
Get an iterator over the symbols in the table. Read more
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. Read more
Auto Trait Implementations
impl<'data, 'file> RefUnwindSafe for SymbolTable<'data, 'file>
impl<'data, 'file> Send for SymbolTable<'data, 'file>
impl<'data, 'file> Sync for SymbolTable<'data, 'file>
impl<'data, 'file> Unpin for SymbolTable<'data, 'file> where
    'data: 'file, 
impl<'data, 'file> UnwindSafe for SymbolTable<'data, 'file>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
 
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more