pub struct HarLog {
pub version: String,
pub creator: HarCreator,
pub browser: Option<HarCreator>,
pub pages: Vec<HarPage>,
pub entries: Vec<HarEntry>,
pub comment: Option<String>,
}Expand description
HAR log structure.
Fields§
§version: StringHAR version (always “1.2”).
creator: HarCreatorCreator tool information.
browser: Option<HarCreator>Browser information (optional).
pages: Vec<HarPage>Pages in the HAR.
entries: Vec<HarEntry>Network entries.
comment: Option<String>Optional comment.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HarLog
impl<'de> Deserialize<'de> for HarLog
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 HarLog
impl RefUnwindSafe for HarLog
impl Send for HarLog
impl Sync for HarLog
impl Unpin for HarLog
impl UnwindSafe for HarLog
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