pub struct HarEntry {
pub pageref: Option<String>,
pub started_date_time: String,
pub time: f64,
pub request: HarRequest,
pub response: HarResponse,
pub cache: HarCache,
pub timings: HarTimings,
}Expand description
HAR entry (request/response pair)
Fields§
§pageref: Option<String>Page reference ID (if applicable)
started_date_time: StringRequest start timestamp
time: f64Total request/response time (ms)
request: HarRequestHTTP request details
response: HarResponseHTTP response details
cache: HarCacheCache information
timings: HarTimingsDetailed timing breakdown
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 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