pub struct ValidateResult {
pub har_version: String,
pub creator: String,
pub entry_count: usize,
pub pct_with_timings: f64,
pub pct_with_resp_body: f64,
pub pct_post_with_req_body: f64,
pub with_auth: bool,
pub with_cookies: bool,
pub anomalies: Vec<Anomaly>,
pub sanitized: bool,
pub sufficiency_notes: Vec<String>,
}Fields§
§har_version: String§creator: String§entry_count: usize§pct_with_timings: f64§pct_with_resp_body: f64§pct_post_with_req_body: f64§with_auth: bool§anomalies: Vec<Anomaly>§sanitized: bool§sufficiency_notes: Vec<String>Trait Implementations§
Source§impl Debug for ValidateResult
impl Debug for ValidateResult
Auto Trait Implementations§
impl Freeze for ValidateResult
impl RefUnwindSafe for ValidateResult
impl Send for ValidateResult
impl Sync for ValidateResult
impl Unpin for ValidateResult
impl UnsafeUnpin for ValidateResult
impl UnwindSafe for ValidateResult
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