pub struct HarLog {
pub version: String,
pub creator: HarCreator,
pub browser: Option<HarBrowser>,
pub pages: Vec<HarPage>,
pub entries: Vec<HarEntry>,
}Expand description
HAR log structure (root object)
Fields§
§version: StringHAR format version
creator: HarCreatorTool that created the HAR file
browser: Option<HarBrowser>Optional browser information
pages: Vec<HarPage>Optional page information
entries: Vec<HarEntry>Array of HTTP request/response entries
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