Type Alias object::read::xcoff::XcoffSymbolTable32
source · pub type XcoffSymbolTable32<'data, 'file, R = &'data [u8]> = XcoffSymbolTable<'data, 'file, FileHeader32, R>;
Expand description
A symbol table in an XcoffFile32
.
Aliased Type§
struct XcoffSymbolTable32<'data, 'file, R = &'data [u8]> { /* private fields */ }
Trait Implementations
source§impl<'data, 'file, Xcoff, R> Clone for XcoffSymbolTable<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Clone for XcoffSymbolTable<'data, 'file, Xcoff, R>
source§fn clone(&self) -> XcoffSymbolTable<'data, 'file, Xcoff, R>
fn clone(&self) -> XcoffSymbolTable<'data, 'file, Xcoff, 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, Xcoff, R> Debug for XcoffSymbolTable<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> Debug for XcoffSymbolTable<'data, 'file, Xcoff, R>
source§impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> ObjectSymbolTable<'data> for XcoffSymbolTable<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> ObjectSymbolTable<'data> for XcoffSymbolTable<'data, 'file, Xcoff, R>
§type Symbol = XcoffSymbol<'data, 'file, Xcoff, R>
type Symbol = XcoffSymbol<'data, 'file, Xcoff, R>
A symbol table entry.
§type SymbolIterator = XcoffSymbolIterator<'data, 'file, Xcoff, R>
type SymbolIterator = XcoffSymbolIterator<'data, 'file, Xcoff, R>
An iterator for the symbols in a symbol table.
source§fn symbols(&self) -> Self::SymbolIterator
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>
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Self::Symbol>
Get the symbol at the given index. Read more