pub struct HarClassificationReport {
pub page_title: Option<String>,
pub aggregate: Detection,
pub requests: Vec<HarRequestSummary>,
}Expand description
Full HAR classification report.
Fields§
§page_title: Option<String>URL/title from HAR page metadata when available.
aggregate: DetectionSummary classification for all entries.
requests: Vec<HarRequestSummary>Request-level classification outputs.
Trait Implementations§
Source§impl Clone for HarClassificationReport
impl Clone for HarClassificationReport
Source§fn clone(&self) -> HarClassificationReport
fn clone(&self) -> HarClassificationReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HarClassificationReport
impl Debug for HarClassificationReport
Source§impl<'de> Deserialize<'de> for HarClassificationReport
impl<'de> Deserialize<'de> for HarClassificationReport
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
Source§impl PartialEq for HarClassificationReport
impl PartialEq for HarClassificationReport
Source§impl Serialize for HarClassificationReport
impl Serialize for HarClassificationReport
impl StructuralPartialEq for HarClassificationReport
Auto Trait Implementations§
impl Freeze for HarClassificationReport
impl RefUnwindSafe for HarClassificationReport
impl Send for HarClassificationReport
impl Sync for HarClassificationReport
impl Unpin for HarClassificationReport
impl UnsafeUnpin for HarClassificationReport
impl UnwindSafe for HarClassificationReport
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