pub struct DiffResult {
pub new_findings: Vec<BaselineEntry>,
pub removed_findings: Vec<BaselineEntry>,
pub unchanged_count: usize,
}Expand description
The result of comparing current findings against a saved baseline.
Fields§
§new_findings: Vec<BaselineEntry>Findings that exist now but weren’t in the baseline (newly introduced).
removed_findings: Vec<BaselineEntry>Findings that were in the baseline but no longer exist (resolved or removed).
unchanged_count: usizeNumber of findings present in both current and baseline.
Auto Trait Implementations§
impl Freeze for DiffResult
impl RefUnwindSafe for DiffResult
impl Send for DiffResult
impl Sync for DiffResult
impl Unpin for DiffResult
impl UnsafeUnpin for DiffResult
impl UnwindSafe for DiffResult
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