pub struct MetricsReport {
pub system: SystemMetricsSnapshot,
pub threads: Vec<ThreadMetrics>,
pub timestamp: Instant,
}
Expand description
Complete metrics report.
Fields§
§system: SystemMetricsSnapshot
§threads: Vec<ThreadMetrics>
§timestamp: Instant
Trait Implementations§
Source§impl Clone for MetricsReport
impl Clone for MetricsReport
Source§fn clone(&self) -> MetricsReport
fn clone(&self) -> MetricsReport
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 MetricsReport
impl RefUnwindSafe for MetricsReport
impl Send for MetricsReport
impl Sync for MetricsReport
impl Unpin for MetricsReport
impl UnwindSafe for MetricsReport
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