pub struct Vulnerability {
pub cve: Option<Cve>,
pub cwes: Option<Vec<Cwe>>,
pub fixed_package: Option<Package>,
pub offending_package: Option<Package>,
pub provider_risk_score: Option<i64>,
pub reachable: Option<bool>,
pub security_bulletin: Option<SecurityBulletin>,
}Expand description
Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cve: Option<Cve>CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
cwes: Option<Vec<Cwe>>Represents one or more Common Weakness Enumeration (CWE) information on this vulnerability.
fixed_package: Option<Package>The fixed package is relevant to the finding.
offending_package: Option<Package>The offending package is relevant to the finding.
provider_risk_score: Option<i64>Provider provided risk_score based on multiple factors. The higher the risk score, the more risky the vulnerability is.
reachable: Option<bool>Represents whether the vulnerability is reachable (detected via static analysis)
security_bulletin: Option<SecurityBulletin>The security bulletin is relevant to this finding.
Trait Implementations§
Source§impl Clone for Vulnerability
impl Clone for Vulnerability
Source§fn clone(&self) -> Vulnerability
fn clone(&self) -> Vulnerability
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 Vulnerability
impl Debug for Vulnerability
Source§impl Default for Vulnerability
impl Default for Vulnerability
Source§fn default() -> Vulnerability
fn default() -> Vulnerability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Vulnerability
impl<'de> Deserialize<'de> for Vulnerability
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
Source§impl Serialize for Vulnerability
impl Serialize for Vulnerability
impl Part for Vulnerability
Auto Trait Implementations§
impl Freeze for Vulnerability
impl RefUnwindSafe for Vulnerability
impl Send for Vulnerability
impl Sync for Vulnerability
impl Unpin for Vulnerability
impl UnwindSafe for Vulnerability
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