pub struct Risk {
pub cisa_kev: Option<CISAKnownExploitedVulnerabilities>,
pub epss: Option<ExploitPredictionScoringSystem>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cisa_kev: Option<CISAKnownExploitedVulnerabilities>CISA maintains the authoritative source of vulnerabilities that have been exploited in the wild.
epss: Option<ExploitPredictionScoringSystem>The Exploit Prediction Scoring System (EPSS) estimates the likelihood (probability) that a software vulnerability will be exploited in the wild.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Risk
impl<'de> Deserialize<'de> for Risk
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for Risk
Auto Trait Implementations§
impl Freeze for Risk
impl RefUnwindSafe for Risk
impl Send for Risk
impl Sync for Risk
impl Unpin for Risk
impl UnwindSafe for Risk
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