pub struct StackTrace { /* private fields */ }Available on crate feature
Runtime only.Expand description
Call frames for assertions or error messages.
Implementations§
Source§impl StackTrace
impl StackTrace
pub fn builder() -> StackTraceBuilder
Sourcepub fn description(&self) -> Option<&String>
pub fn description(&self) -> Option<&String>
String label of this stack trace. For async traces this may be a name of the function that initiated the async call.
Sourcepub fn call_frames(&self) -> &[CallFrame]
pub fn call_frames(&self) -> &[CallFrame]
JavaScript function name.
Sourcepub fn parent(&self) -> Option<&StackTrace>
pub fn parent(&self) -> Option<&StackTrace>
Asynchronous JavaScript stack trace that preceded this stack, if available.
Trait Implementations§
Source§impl Clone for StackTrace
impl Clone for StackTrace
Source§fn clone(&self) -> StackTrace
fn clone(&self) -> StackTrace
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StackTrace
impl Debug for StackTrace
Source§impl<'de> Deserialize<'de> for StackTrace
impl<'de> Deserialize<'de> for StackTrace
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StackTrace
impl RefUnwindSafe for StackTrace
impl Send for StackTrace
impl Sync for StackTrace
impl Unpin for StackTrace
impl UnwindSafe for StackTrace
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