pub struct FrameCount {
pub frames: Vec<StackFrameInfo>,
pub count: u64,
}Expand description
Container for stack frame information with count
Used to track how many times a particular stack trace appears in the profile data for generating accurate flamegraphs.
Fields§
§frames: Vec<StackFrameInfo>§count: u64Auto Trait Implementations§
impl Freeze for FrameCount
impl RefUnwindSafe for FrameCount
impl Send for FrameCount
impl Sync for FrameCount
impl Unpin for FrameCount
impl UnwindSafe for FrameCount
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