pub struct ScanResult {
pub file_results: Vec<FileScanResult>,
pub scanned_count: usize,
pub skipped_count: usize,
pub truncated: bool,
pub truncation_reason: Option<String>,
}Expand description
Result of a complete scan operation.
Fields§
§file_results: Vec<FileScanResult>§scanned_count: usize§skipped_count: usize§truncated: bool§truncation_reason: Option<String>Implementations§
Source§impl ScanResult
impl ScanResult
Sourcepub fn has_findings_at_or_above(&self, threshold: Severity) -> bool
pub fn has_findings_at_or_above(&self, threshold: Severity) -> bool
Check if any finding meets or exceeds the given severity threshold.
Sourcepub fn total_findings(&self) -> usize
pub fn total_findings(&self) -> usize
Total number of findings across all files.
Auto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnsafeUnpin for ScanResult
impl UnwindSafe for ScanResult
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more