pub struct WasmSymbolTable<'data, 'file> { /* private fields */ }
Expand description
A symbol table in a WasmFile
.
Trait Implementations§
Source§impl<'data, 'file> Debug for WasmSymbolTable<'data, 'file>
impl<'data, 'file> Debug for WasmSymbolTable<'data, 'file>
Source§impl<'data, 'file> ObjectSymbolTable<'data> for WasmSymbolTable<'data, 'file>
impl<'data, 'file> ObjectSymbolTable<'data> for WasmSymbolTable<'data, 'file>
Source§type Symbol = WasmSymbol<'data, 'file>
type Symbol = WasmSymbol<'data, 'file>
A symbol table entry.
Source§type SymbolIterator = WasmSymbolIterator<'data, 'file>
type SymbolIterator = WasmSymbolIterator<'data, 'file>
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
Auto Trait Implementations§
impl<'data, 'file> Freeze for WasmSymbolTable<'data, 'file>
impl<'data, 'file> RefUnwindSafe for WasmSymbolTable<'data, 'file>
impl<'data, 'file> Send for WasmSymbolTable<'data, 'file>
impl<'data, 'file> Sync for WasmSymbolTable<'data, 'file>
impl<'data, 'file> Unpin for WasmSymbolTable<'data, 'file>
impl<'data, 'file> UnwindSafe for WasmSymbolTable<'data, 'file>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more