pub struct ResolvedSymbolTable<'s> { /* private fields */ }
Implementations
sourceimpl<'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
sourceimpl<'s> FromIterator<(&'s DebugSymbol, Result<ResolvedSymbol, SymbolResolutionError>)> for ResolvedSymbolTable<'s>
impl<'s> FromIterator<(&'s DebugSymbol, Result<ResolvedSymbol, SymbolResolutionError>)> for ResolvedSymbolTable<'s>
sourcefn from_iter<T>(iter: T) -> Self where
T: IntoIterator<Item = (&'s DebugSymbol, Result<ResolvedSymbol, SymbolResolutionError>)>,
fn from_iter<T>(iter: T) -> Self where
T: IntoIterator<Item = (&'s DebugSymbol, Result<ResolvedSymbol, SymbolResolutionError>)>,
Creates a value from an iterator. Read more
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more