pub struct HarEntry {
pub pageref: String,
pub started_date_time: String,
pub time: f64,
pub request: HarRequest,
pub response: HarResponse,
pub cache: Value,
pub timings: HarTimings,
pub server_ip_address: Option<String>,
pub connection: Option<String>,
}Expand description
A single HTTP Archive (HAR) entry representing a network request/response pair.
Fields§
§pageref: StringUnique page reference within the HAR
started_date_time: StringISO 8601 timestamp when the request started
time: f64Total elapsed time in milliseconds
request: HarRequestRequest details
response: HarResponseResponse details
cache: ValueCache state
timings: HarTimingsTiming breakdown
server_ip_address: Option<String>Server IP address (if available)
connection: Option<String>Connection UUID (if available)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HarEntry
impl RefUnwindSafe for HarEntry
impl Send for HarEntry
impl Sync for HarEntry
impl Unpin for HarEntry
impl UnsafeUnpin for HarEntry
impl UnwindSafe for HarEntry
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