pub struct ResolvedSymbolTable<'s> { /* private fields */ }
Implementations§
Source§impl<'s> ResolvedSymbolTable<'s>
impl<'s> ResolvedSymbolTable<'s>
pub fn lookup( &self, symbol: &DebugSymbol, ) -> Option<Result<&ResolvedSymbol, &SymbolResolutionError>>
pub fn iter( &self, ) -> impl Iterator<Item = (&DebugSymbol, Result<&ResolvedSymbol, &SymbolResolutionError>)>
Trait Implementations§
Source§impl<'s> FromIterator<(&'s DebugSymbol, Result<ResolvedSymbol, SymbolResolutionError>)> for ResolvedSymbolTable<'s>
impl<'s> FromIterator<(&'s DebugSymbol, Result<ResolvedSymbol, SymbolResolutionError>)> for ResolvedSymbolTable<'s>
Auto Trait Implementations§
impl<'s> Freeze for ResolvedSymbolTable<'s>
impl<'s> !RefUnwindSafe for ResolvedSymbolTable<'s>
impl<'s> !Send for ResolvedSymbolTable<'s>
impl<'s> !Sync for ResolvedSymbolTable<'s>
impl<'s> Unpin for ResolvedSymbolTable<'s>
impl<'s> !UnwindSafe for ResolvedSymbolTable<'s>
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