[][src]Struct google_containeranalysis1_beta1::CVSSv3

pub struct CVSSv3 {
    pub attack_complexity: Option<String>,
    pub attack_vector: Option<String>,
    pub availability_impact: Option<String>,
    pub user_interaction: Option<String>,
    pub base_score: Option<f32>,
    pub privileges_required: Option<String>,
    pub impact_score: Option<f32>,
    pub exploitability_score: Option<f32>,
    pub confidentiality_impact: Option<String>,
    pub integrity_impact: Option<String>,
    pub scope: Option<String>,
}

Common Vulnerability Scoring System version 3. For details, see https://www.first.org/cvss/specification-document

This type is not used in any activity, and only used as part of another schema.

Fields

attack_complexity: Option<String>

no description provided

attack_vector: Option<String>

Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments.

availability_impact: Option<String>

no description provided

user_interaction: Option<String>

no description provided

base_score: Option<f32>

The base score is a function of the base metric scores.

privileges_required: Option<String>

no description provided

impact_score: Option<f32>

no description provided

exploitability_score: Option<f32>

no description provided

confidentiality_impact: Option<String>

no description provided

integrity_impact: Option<String>

no description provided

scope: Option<String>

no description provided

Trait Implementations

impl Part for CVSSv3[src]

impl Default for CVSSv3[src]

impl Clone for CVSSv3[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CVSSv3[src]

impl Serialize for CVSSv3[src]

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

Auto Trait Implementations

impl Send for CVSSv3

impl Unpin for CVSSv3

impl Sync for CVSSv3

impl UnwindSafe for CVSSv3

impl RefUnwindSafe for CVSSv3

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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