pub struct HttpLatencyStats {
pub avg: Duration,
pub min: Duration,
pub med: Duration,
pub max: Duration,
pub p90: Duration,
pub p95: Duration,
}Fields§
§avg: Duration§min: Duration§med: Duration§max: Duration§p90: Duration§p95: DurationTrait Implementations§
Source§impl Debug for HttpLatencyStats
impl Debug for HttpLatencyStats
Source§impl<'de> Deserialize<'de> for HttpLatencyStats
impl<'de> Deserialize<'de> for HttpLatencyStats
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 HttpLatencyStats
impl RefUnwindSafe for HttpLatencyStats
impl Send for HttpLatencyStats
impl Sync for HttpLatencyStats
impl Unpin for HttpLatencyStats
impl UnwindSafe for HttpLatencyStats
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