object::read::xcoff

Type Alias 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>

Source§

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

A symbol table entry.
Source§

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,