pub struct HarPage {
pub started_date_time: String,
pub id: String,
pub title: String,
pub page_timings: HarPageTimings,
pub comment: Option<String>,
}Expand description
HAR page entry.
Fields§
§started_date_time: StringStart timestamp (ISO 8601).
id: StringPage ID (unique identifier).
title: StringPage title.
page_timings: HarPageTimingsPage timing information.
comment: Option<String>Optional comment.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HarPage
impl<'de> Deserialize<'de> for HarPage
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 HarPage
impl RefUnwindSafe for HarPage
impl Send for HarPage
impl Sync for HarPage
impl Unpin for HarPage
impl UnwindSafe for HarPage
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