Struct gapi_grpc::google::cloud::osconfig::v1alpha::vulnerability_report::vulnerability::Details[][src]

pub struct Details {
    pub cve: String,
    pub cvss_v2_score: f32,
    pub cvss_v3: Option<CvsSv3>,
    pub severity: String,
    pub description: String,
    pub references: Vec<Reference>,
}

Contains metadata information for the vulnerability. This information is collected from the upstream feed of the operating system.

Fields

cve: String

The CVE of the vulnerability. CVE cannot be empty and the combination of <cve, classification> should be unique across vulnerabilities for a VM.

cvss_v2_score: f32

The CVSS V2 score of this vulnerability. CVSS V2 score is on a scale of 0 - 10 where 0 indicates low severity and 10 indicates high severity.

cvss_v3: Option<CvsSv3>

The full description of the CVSSv3 for this vulnerability from NVD.

severity: String

Assigned severity/impact ranking from the distro.

description: String

The note or description describing the vulnerability from the distro.

references: Vec<Reference>

Corresponds to the references attached to the VulnerabilityDetails.

Trait Implementations

impl Clone for Details[src]

impl Debug for Details[src]

impl Default for Details[src]

impl Message for Details[src]

impl PartialEq<Details> for Details[src]

impl StructuralPartialEq for Details[src]

Auto Trait Implementations

impl RefUnwindSafe for Details

impl Send for Details

impl Sync for Details

impl Unpin for Details

impl UnwindSafe for Details

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]