pub struct HarTimings {
pub dns: f64,
pub connect: f64,
pub ssl: Option<f64>,
pub send: f64,
pub wait: f64,
pub receive: f64,
pub blocked: Option<f64>,
}Expand description
HAR timing object (all values in milliseconds)
Fields§
§dns: f64Time spent in DNS lookup
connect: f64Time spent in TCP connection
ssl: Option<f64>Time spent in TLS handshake
send: f64Time spent sending request
wait: f64Time spent waiting for response
receive: f64Time spent receiving response
blocked: Option<f64>Total blocked time
Trait Implementations§
Source§impl Clone for HarTimings
impl Clone for HarTimings
Source§fn clone(&self) -> HarTimings
fn clone(&self) -> HarTimings
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 HarTimings
impl Debug for HarTimings
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
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