pub trait CVSSScore {
// Required methods
fn base_score(&self) -> Score;
fn temporal_score(&self) -> Score;
fn environmental_score(&self) -> Score;
fn impact_score(&self) -> Score;
fn expoitability_score(&self) -> Score;
}Expand description
CVSS Score implementation: Base/Temporal/Environmental
Required Methods§
Sourcefn base_score(&self) -> Score
fn base_score(&self) -> Score
Calculate CVSS Base Score
Sourcefn temporal_score(&self) -> Score
fn temporal_score(&self) -> Score
Calculate CVSS Temporal Score
Sourcefn environmental_score(&self) -> Score
fn environmental_score(&self) -> Score
Calculate CVSS Environmental Score
Sourcefn impact_score(&self) -> Score
fn impact_score(&self) -> Score
Calculate Impact Sub Score
Sourcefn expoitability_score(&self) -> Score
fn expoitability_score(&self) -> Score
Calculate Exploitability Score