pub struct ScanReport {
pub target_name: String,
pub findings: Vec<Finding>,
pub verdict: PolicyVerdict,
pub scan_root: PathBuf,
pub targets: Vec<ScanTarget>,
}Expand description
Complete scan report.
Fields§
§target_name: String§findings: Vec<Finding>§verdict: PolicyVerdict§scan_root: PathBufAbsolute (or canonicalized) path to the scanned directory. Passed to output renderers for stable fingerprint computation.
targets: Vec<ScanTarget>Raw scan targets produced by the adapter pipeline.
Used by callers that need to inspect the IR (e.g., --emit-egress-policy).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanReport
impl RefUnwindSafe for ScanReport
impl Send for ScanReport
impl Sync for ScanReport
impl Unpin for ScanReport
impl UnsafeUnpin for ScanReport
impl UnwindSafe for ScanReport
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