pub struct ProfilerAggregateRow {Show 19 fields
pub category: ProfilerCategoryId,
pub span_name: String,
pub dim_1: Option<String>,
pub dim_2: Option<String>,
pub calls: u64,
pub total_us: u64,
pub min_us: u32,
pub max_us: u32,
pub p50_us: u32,
pub p60_us: u32,
pub p70_us: u32,
pub p75_us: u32,
pub p80_us: u32,
pub p85_us: u32,
pub p90_us: u32,
pub p95_us: u32,
pub p98_us: u32,
pub p99_us: u32,
pub extras_sum: [u64; 4],
}Fields§
§category: ProfilerCategoryId§span_name: String§dim_1: Option<String>§dim_2: Option<String>§calls: u64§total_us: u64§min_us: u32§max_us: u32§p50_us: u32§p60_us: u32§p70_us: u32§p75_us: u32§p80_us: u32§p85_us: u32§p90_us: u32§p95_us: u32§p98_us: u32§p99_us: u32§extras_sum: [u64; 4]Trait Implementations§
Source§impl Clone for ProfilerAggregateRow
impl Clone for ProfilerAggregateRow
Source§fn clone(&self) -> ProfilerAggregateRow
fn clone(&self) -> ProfilerAggregateRow
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 moreAuto Trait Implementations§
impl Freeze for ProfilerAggregateRow
impl RefUnwindSafe for ProfilerAggregateRow
impl Send for ProfilerAggregateRow
impl Sync for ProfilerAggregateRow
impl Unpin for ProfilerAggregateRow
impl UnsafeUnpin for ProfilerAggregateRow
impl UnwindSafe for ProfilerAggregateRow
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,
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