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>
Source§type Symbol = XcoffSymbol<'data, 'file, Xcoff, R>
type Symbol = XcoffSymbol<'data, 'file, Xcoff, R>
A symbol table entry.
Source§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