pub struct StackTrace {
pub program_addresses: Vec<u64>,
}
Expand description
A stack trace.
Fields§
§program_addresses: Vec<u64>
Code addresses at each call frame. The first entry corresponds to the leaf call.
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 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