pub struct DiffReport {
pub new_findings: Vec<DiffEntry>,
pub resolved_findings: Vec<DiffEntry>,
pub waived_findings: Vec<DiffEntry>,
pub baselined_findings: Vec<DiffEntry>,
pub unchanged_findings: usize,
}Fields§
§new_findings: Vec<DiffEntry>§resolved_findings: Vec<DiffEntry>§waived_findings: Vec<DiffEntry>§baselined_findings: Vec<DiffEntry>§unchanged_findings: usizeCount of findings present in both the current and previous scan that remain
active (not waived or baselined). This is purely informational; the total
new + resolved + waived + baselined + unchanged may not equal the union of
all findings across both scans.
Trait Implementations§
Source§impl Clone for DiffReport
impl Clone for DiffReport
Source§fn clone(&self) -> DiffReport
fn clone(&self) -> DiffReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DiffReport
impl Debug for DiffReport
Source§impl<'de> Deserialize<'de> for DiffReport
impl<'de> Deserialize<'de> for DiffReport
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 DiffReport
impl RefUnwindSafe for DiffReport
impl Send for DiffReport
impl Sync for DiffReport
impl Unpin for DiffReport
impl UnsafeUnpin for DiffReport
impl UnwindSafe for DiffReport
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