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

The version of this cvss value

The cvss vector of this cvss value

Provided Methods

The cvss vector of this cvss value

Implementations on Foreign Types

Implementors