pub struct DetectionReport {
pub ai_comment_count: usize,
pub machine_attr_count: usize,
pub machine_class_count: usize,
pub hidden_inline_count: usize,
pub aria_hidden_count: usize,
pub samples: Vec<Sample>,
}Expand description
Aggregate report. Counts by kind plus a list of samples.
Fields§
§ai_comment_count: usize§machine_attr_count: usize§machine_class_count: usize§samples: Vec<Sample>Implementations§
Trait Implementations§
Source§impl Clone for DetectionReport
impl Clone for DetectionReport
Source§fn clone(&self) -> DetectionReport
fn clone(&self) -> DetectionReport
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 DetectionReport
impl Debug for DetectionReport
Source§impl Default for DetectionReport
impl Default for DetectionReport
Source§fn default() -> DetectionReport
fn default() -> DetectionReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DetectionReport
impl RefUnwindSafe for DetectionReport
impl Send for DetectionReport
impl Sync for DetectionReport
impl Unpin for DetectionReport
impl UnsafeUnpin for DetectionReport
impl UnwindSafe for DetectionReport
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