pub struct StackTrace {
pub thread_koid: u64,
pub frames: Vec<CallFrame>,
}Expand description
A stack trace.
Fields§
§thread_koid: u64The koid of the thread with this stack trace.
frames: Vec<CallFrame>The stack frames, listed bottom-to-top.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StackTrace
impl RefUnwindSafe for StackTrace
impl Send for StackTrace
impl Sync for StackTrace
impl Unpin for StackTrace
impl UnsafeUnpin 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