pub struct RunResult {
pub findings: Vec<Finding>,
pub errors: Vec<CapturedError>,
pub elapsed: Duration,
pub scanned: usize,
pub skipped: usize,
pub metrics: RuntimeMetrics,
}Expand description
Everything produced by a completed run.
Fields§
§findings: Vec<Finding>Deduplicated, sorted list of findings across all scanners + URLs.
errors: Vec<CapturedError>Every non-fatal error encountered during the run.
elapsed: DurationWall-clock time for the full run.
scanned: usizeHow many URLs were actually scanned (may be < input list due to cap).
skipped: usizeHow many URLs were skipped (cap or dedup).
metrics: RuntimeMetricsRuntime metrics captured during the run.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnsafeUnpin for RunResult
impl UnwindSafe for RunResult
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