[][src]Struct rusoto_securityhub::Vulnerability

pub struct Vulnerability {
    pub cvss: Option<Vec<Cvss>>,
    pub id: String,
    pub reference_urls: Option<Vec<String>>,
    pub related_vulnerabilities: Option<Vec<String>>,
    pub vendor: Option<VulnerabilityVendor>,
    pub vulnerable_packages: Option<Vec<SoftwarePackage>>,
}

A vulnerability associated with a finding.

Fields

cvss: Option<Vec<Cvss>>

CVSS scores from the advisory related to the vulnerability.

id: String

The identifier of the vulnerability.

reference_urls: Option<Vec<String>>

A list of URLs that provide additional information about the vulnerability.

related_vulnerabilities: Option<Vec<String>>

List of vulnerabilities that are related to this vulnerability.

vendor: Option<VulnerabilityVendor>

Information about the vendor that generates the vulnerability report.

vulnerable_packages: Option<Vec<SoftwarePackage>>

List of software packages that have the vulnerability.

Trait Implementations

impl Clone for Vulnerability[src]

impl Debug for Vulnerability[src]

impl Default for Vulnerability[src]

impl<'de> Deserialize<'de> for Vulnerability[src]

impl PartialEq<Vulnerability> for Vulnerability[src]

impl Serialize for Vulnerability[src]

impl StructuralPartialEq for Vulnerability[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.