pub struct CallStack {
pub frames: Vec<u64>,
pub total_depth: usize,
}
Expand description
Call stack for profiling.
Fields§
§frames: Vec<u64>
Stack frames (instruction pointers)
total_depth: usize
Total stack depth (may be larger than frames if truncated)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallStack
impl RefUnwindSafe for CallStack
impl Send for CallStack
impl Sync for CallStack
impl Unpin for CallStack
impl UnwindSafe for CallStack
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