Struct pprof::UnresolvedReport
source · [−]pub struct UnresolvedReport {
pub data: HashMap<UnresolvedFrames, isize>,
pub timing: ReportTiming,
}Expand description
The presentation of an unsymbolicated report which is actually an HashMap from UnresolvedFrames to isize (count).
Fields
data: HashMap<UnresolvedFrames, isize>key is a backtrace captured by profiler and value is count of it.
timing: ReportTimingCollection frequency, start time, duration.
Auto Trait Implementations
impl RefUnwindSafe for UnresolvedReport
impl Send for UnresolvedReport
impl Sync for UnresolvedReport
impl Unpin for UnresolvedReport
impl UnwindSafe for UnresolvedReport
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more