pub struct FloatFieldSummary {
pub min: f64,
pub avg: f64,
pub p50: f64,
pub p95: f64,
pub p99: f64,
pub max: f64,
}Expand description
Summary statistics for a float response field.
Fields§
§min: f64§avg: f64§p50: f64§p95: f64§p99: f64§max: f64Trait Implementations§
Source§impl Debug for FloatFieldSummary
impl Debug for FloatFieldSummary
Auto Trait Implementations§
impl Freeze for FloatFieldSummary
impl RefUnwindSafe for FloatFieldSummary
impl Send for FloatFieldSummary
impl Sync for FloatFieldSummary
impl Unpin for FloatFieldSummary
impl UnsafeUnpin for FloatFieldSummary
impl UnwindSafe for FloatFieldSummary
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