Struct wasmtime::FrameSymbol
source · pub struct FrameSymbol { /* private fields */ }
Expand description
Implementations§
source§impl 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 Freeze for FrameSymbol
impl RefUnwindSafe for FrameSymbol
impl Send for FrameSymbol
impl Sync for FrameSymbol
impl Unpin for FrameSymbol
impl UnwindSafe for FrameSymbol
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more