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>
where Xcoff: FileHeader + Clone, R: ReadRef<'data> + Clone,

source§

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)

Performs copy-assignment from source. Read more
source§

impl<'data, 'file, Xcoff, R> Debug for XcoffSymbolTable<'data, 'file, Xcoff, R>
where Xcoff: FileHeader + Debug, R: ReadRef<'data> + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> ObjectSymbolTable<'data> for XcoffSymbolTable<'data, 'file, Xcoff, R>

§

type Symbol = XcoffSymbol<'data, 'file, Xcoff, R>

A symbol table entry.
§

type SymbolIterator = XcoffSymbolIterator<'data, 'file, Xcoff, R>

An iterator for the symbols in a symbol table.
source§

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>

Get the symbol at the given index. Read more
source§

impl<'data, 'file, Xcoff, R> Copy for XcoffSymbolTable<'data, 'file, Xcoff, R>
where Xcoff: FileHeader + Copy, R: ReadRef<'data> + Copy,