pub struct RouteAggregate {
pub method: String,
pub path: String,
pub host: String,
pub baseline_category: &'static str,
pub count: usize,
pub errors: usize,
pub total_ms_p50: u64,
pub total_ms_p90: u64,
pub total_ms_p99: u64,
pub total_ms_max: u64,
pub cumulative_ms: u64,
pub phase_median_ms: PhaseMedians,
}Fields§
§method: String§path: String§host: String§baseline_category: &'static str§count: usize§errors: usize§total_ms_p50: u64§total_ms_p90: u64§total_ms_p99: u64§total_ms_max: u64§cumulative_ms: u64§phase_median_ms: PhaseMediansTrait Implementations§
Source§impl Clone for RouteAggregate
impl Clone for RouteAggregate
Source§fn clone(&self) -> RouteAggregate
fn clone(&self) -> RouteAggregate
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 moreSource§impl Debug for RouteAggregate
impl Debug for RouteAggregate
Auto Trait Implementations§
impl Freeze for RouteAggregate
impl RefUnwindSafe for RouteAggregate
impl Send for RouteAggregate
impl Sync for RouteAggregate
impl Unpin for RouteAggregate
impl UnsafeUnpin for RouteAggregate
impl UnwindSafe for RouteAggregate
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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