pub struct ParsedHar {
pub page_title: Option<String>,
pub requests: Vec<TransactionViewWithType>,
}Expand description
Internal parsed HAR representation.
Fields§
§page_title: Option<String>Page title from the HAR pages section when available.
requests: Vec<TransactionViewWithType>Parsed request transactions.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParsedHar
impl RefUnwindSafe for ParsedHar
impl Send for ParsedHar
impl Sync for ParsedHar
impl Unpin for ParsedHar
impl UnsafeUnpin for ParsedHar
impl UnwindSafe for ParsedHar
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