pub struct HarTimings {
pub send: Option<f64>,
pub wait: Option<f64>,
pub receive: Option<f64>,
}Expand description
HAR timing breakdown for performance analysis
Fields§
§send: Option<f64>Time to send request (ms)
wait: Option<f64>Time waiting for response (ms)
receive: Option<f64>Time to receive response (ms)
Trait Implementations§
Source§impl Debug for HarTimings
impl Debug for HarTimings
Source§impl<'de> Deserialize<'de> for HarTimings
impl<'de> Deserialize<'de> for HarTimings
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 HarTimings
impl RefUnwindSafe for HarTimings
impl Send for HarTimings
impl Sync for HarTimings
impl Unpin for HarTimings
impl UnsafeUnpin for HarTimings
impl UnwindSafe for HarTimings
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