Struct aws_sdk_securityhub::model::Cvss [−][src]
#[non_exhaustive]pub struct Cvss {
pub version: Option<String>,
pub base_score: f64,
pub base_vector: Option<String>,
pub source: Option<String>,
pub adjustments: Option<Vec<Adjustment>>,
}
Expand description
CVSS scores from the advisory related to the vulnerability.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.version: Option<String>
The version of CVSS for the CVSS score.
base_score: f64
The base CVSS score.
base_vector: Option<String>
The base scoring vector for the CVSS score.
source: Option<String>
The origin of the original CVSS score and vector.
adjustments: Option<Vec<Adjustment>>
Adjustments to the CVSS metrics.
Implementations
The base CVSS score.
The base scoring vector for the CVSS score.
Adjustments to the CVSS metrics.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Cvss
impl UnwindSafe for Cvss
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more