pub struct PerformanceReport {
pub stats: HashMap<CounterType, CounterStats>,
pub total_runtime: Duration,
pub monitor_config: MonitorConfig,
}
Expand description
Performance report with comprehensive metrics
Fields§
§stats: HashMap<CounterType, CounterStats>
Statistics for each counter type
total_runtime: Duration
Total runtime of the monitor
monitor_config: MonitorConfig
Monitor configuration used
Implementations§
Trait Implementations§
Source§impl Clone for PerformanceReport
impl Clone for PerformanceReport
Source§fn clone(&self) -> PerformanceReport
fn clone(&self) -> PerformanceReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PerformanceReport
impl RefUnwindSafe for PerformanceReport
impl Send for PerformanceReport
impl Sync for PerformanceReport
impl Unpin for PerformanceReport
impl UnwindSafe for PerformanceReport
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