pub struct RiskAssessment {
pub overall_risk: RiskLevel,
pub critical_findings: u32,
pub high_findings: u32,
pub medium_findings: u32,
pub low_findings: u32,
pub info_findings: u32,
pub exploitable_vulnerabilities: u32,
pub security_score: f32,
}Fields§
§overall_risk: RiskLevel§critical_findings: u32§high_findings: u32§medium_findings: u32§low_findings: u32§info_findings: u32§exploitable_vulnerabilities: u32§security_score: f32Trait Implementations§
Source§impl Clone for RiskAssessment
impl Clone for RiskAssessment
Source§fn clone(&self) -> RiskAssessment
fn clone(&self) -> RiskAssessment
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 RiskAssessment
impl Debug for RiskAssessment
Auto Trait Implementations§
impl Freeze for RiskAssessment
impl RefUnwindSafe for RiskAssessment
impl Send for RiskAssessment
impl Sync for RiskAssessment
impl Unpin for RiskAssessment
impl UnwindSafe for RiskAssessment
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