pub struct ProfilerPercentiles {
pub p50: Duration,
pub p60: Duration,
pub p70: Duration,
pub p75: Duration,
pub p80: Duration,
pub p85: Duration,
pub p90: Duration,
pub p95: Duration,
pub p98: Duration,
pub p99: Duration,
}Fields§
§p50: Duration§p60: Duration§p70: Duration§p75: Duration§p80: Duration§p85: Duration§p90: Duration§p95: Duration§p98: Duration§p99: DurationTrait Implementations§
Source§impl Clone for ProfilerPercentiles
impl Clone for ProfilerPercentiles
Source§fn clone(&self) -> ProfilerPercentiles
fn clone(&self) -> ProfilerPercentiles
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 ProfilerPercentiles
Source§impl Debug for ProfilerPercentiles
impl Debug for ProfilerPercentiles
Source§impl Default for ProfilerPercentiles
impl Default for ProfilerPercentiles
Source§fn default() -> ProfilerPercentiles
fn default() -> ProfilerPercentiles
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProfilerPercentiles
impl<'de> Deserialize<'de> for ProfilerPercentiles
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProfilerPercentiles
impl RefUnwindSafe for ProfilerPercentiles
impl Send for ProfilerPercentiles
impl Sync for ProfilerPercentiles
impl Unpin for ProfilerPercentiles
impl UnsafeUnpin for ProfilerPercentiles
impl UnwindSafe for ProfilerPercentiles
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more