pub struct ScanResult {
pub scan_id: Uuid,
pub target_file: String,
pub scan_timestamp: DateTime<Utc>,
pub vulnerability_findings: Vec<VulnerabilityFinding>,
pub security_findings: Vec<SecurityFinding>,
pub risk_assessment: RiskAssessment,
pub recommendations: Vec<String>,
}Fields§
§scan_id: Uuid§target_file: String§scan_timestamp: DateTime<Utc>§vulnerability_findings: Vec<VulnerabilityFinding>§security_findings: Vec<SecurityFinding>§risk_assessment: RiskAssessment§recommendations: Vec<String>Trait Implementations§
Source§impl Clone for ScanResult
impl Clone for ScanResult
Source§fn clone(&self) -> ScanResult
fn clone(&self) -> ScanResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScanResult
impl Debug for ScanResult
Auto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin 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