pub struct HarLog {
pub version: Option<String>,
pub creator: Option<HarCreator>,
pub browser: Option<HarCreator>,
pub pages: Vec<HarPage>,
pub entries: Vec<HarEntry>,
}Expand description
The log object. Only entries is consulted for replay; creator /
browser / pages are tolerated but ignored.
Fields§
§version: Option<String>§creator: Option<HarCreator>§browser: Option<HarCreator>§pages: Vec<HarPage>§entries: Vec<HarEntry>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 UnsafeUnpin 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