pub trait Cvss {
fn version(&self) -> Option<CvssVersion>;
fn vector(&self) -> Option<String>;
fn as_vector(&self) -> Option<CvssVector> { ... }
}
Expand description
A CVSS abstract
Required Methods
fn version(&self) -> Option<CvssVersion>
fn version(&self) -> Option<CvssVersion>
The version of this cvss value
Provided Methods
fn as_vector(&self) -> Option<CvssVector>
fn as_vector(&self) -> Option<CvssVector>
The cvss vector of this cvss value