Struct wasmtime::FrameSymbol
source · [−]pub struct FrameSymbol { /* private fields */ }
Expand description
Implementations
sourceimpl FrameSymbol
impl FrameSymbol
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Returns the function name associated with this symbol.
Note that this may not be present with malformed debug information, or the debug information may not include it. Also note that the symbol is frequently mangled, so you might need to run some form of demangling over it.
sourcepub fn file(&self) -> Option<&str>
pub fn file(&self) -> Option<&str>
Returns the source code filename this symbol was defined in.
Note that this may not be present with malformed debug information, or the debug information may not include it.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FrameSymbol
impl Send for FrameSymbol
impl Sync for FrameSymbol
impl Unpin for FrameSymbol
impl UnwindSafe for FrameSymbol
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