pub struct HarEntry {
pub started_date_time: Option<String>,
pub time: Option<f64>,
pub request: HarRequest,
pub response: HarResponse,
pub cache: Option<Value>,
pub timings: Option<Value>,
pub server_ip_address: Option<String>,
pub connection: Option<String>,
pub pageref: Option<String>,
}Expand description
One request/response pair.
Fields§
§started_date_time: Option<String>§time: Option<f64>§request: HarRequest§response: HarResponse§cache: Option<Value>§timings: Option<Value>§server_ip_address: Option<String>§connection: Option<String>§pageref: Option<String>Optional pageref linking this entry to a log.pages[*].id.
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