pub struct ScanReport {
pub target_name: String,
pub findings: Vec<Finding>,
pub verdict: PolicyVerdict,
}Expand description
Complete scan report.
Fields§
§target_name: String§findings: Vec<Finding>§verdict: PolicyVerdictTrait 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