pub struct Report {
pub data: HashMap<Frames, isize>,
pub timing: ReportTiming,
}
Expand description
The final presentation of a report which is actually an HashMap
from Frames
to isize (count).
Fields§
§data: HashMap<Frames, isize>
Key is a backtrace captured by profiler and value is count of it.
timing: ReportTiming
Collection frequency, start time, duration.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl !Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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