pub struct IntervalSummary {
pub samples: usize,
pub min: Duration,
pub median: Duration,
pub p95: Duration,
pub max: Duration,
}Expand description
Distribution of the retained recent presented intervals.
Fields§
§samples: usizeNumber of intervals summarized.
min: DurationShortest retained interval.
median: DurationMedian retained interval.
p95: DurationNearest-rank 95th-percentile interval.
max: DurationLongest retained interval.
Trait Implementations§
Source§impl Clone for IntervalSummary
impl Clone for IntervalSummary
Source§fn clone(&self) -> IntervalSummary
fn clone(&self) -> IntervalSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IntervalSummary
Source§impl Debug for IntervalSummary
impl Debug for IntervalSummary
impl Eq for IntervalSummary
Source§impl PartialEq for IntervalSummary
impl PartialEq for IntervalSummary
impl StructuralPartialEq for IntervalSummary
Auto Trait Implementations§
impl Freeze for IntervalSummary
impl RefUnwindSafe for IntervalSummary
impl Send for IntervalSummary
impl Sync for IntervalSummary
impl Unpin for IntervalSummary
impl UnsafeUnpin for IntervalSummary
impl UnwindSafe for IntervalSummary
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