pub struct HarEntry {
pub started_date_time: String,
pub time: f64,
pub request: HarRequest,
pub response: HarResponse,
pub timings: HarTimings,
}Expand description
A single HAR network entry (request + response).
Fields§
§started_date_time: StringISO 8601 timestamp of the request start.
time: f64Total elapsed time in milliseconds.
request: HarRequestHTTP request.
response: HarResponseHTTP response.
timings: HarTimingsAdditional timing details.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HarEntry
impl<'de> Deserialize<'de> for HarEntry
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 HarEntry
impl RefUnwindSafe for HarEntry
impl Send for HarEntry
impl Sync for HarEntry
impl Unpin 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