pub enum LatencyPercentile {
P50,
P90,
P99,
P999,
}Expand description
Common latency percentiles used for performance analysis.
Variants§
P50
The 50th percentile, or the median value.
P90
The 90th percentile.
P99
The 99th percentile (standard tail latency metric).
P999
The 99.9th percentile (extreme tail latency).
Trait Implementations§
Source§impl Clone for LatencyPercentile
impl Clone for LatencyPercentile
Source§fn clone(&self) -> LatencyPercentile
fn clone(&self) -> LatencyPercentile
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 moreSource§impl Debug for LatencyPercentile
impl Debug for LatencyPercentile
Source§impl PartialEq for LatencyPercentile
impl PartialEq for LatencyPercentile
impl Copy for LatencyPercentile
impl StructuralPartialEq for LatencyPercentile
Auto Trait Implementations§
impl Freeze for LatencyPercentile
impl RefUnwindSafe for LatencyPercentile
impl Send for LatencyPercentile
impl Sync for LatencyPercentile
impl Unpin for LatencyPercentile
impl UnsafeUnpin for LatencyPercentile
impl UnwindSafe for LatencyPercentile
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