Struct rustsec::advisory::Advisory[][src]

pub struct Advisory {
    pub metadata: Metadata,
    pub affected: Option<Affected>,
    pub versions: Versions,
}

RustSec Security Advisories

Fields

metadata: Metadata

The [advisory] section of a RustSec advisory

affected: Option<Affected>

The (optional) [affected] section of a RustSec advisory

versions: Versions

Versions related to this advisory which are patched or unaffected.

Implementations

impl Advisory[src]

pub fn load_file(path: impl AsRef<Path>) -> Result<Self, Error>[src]

Load an advisory from a RUSTSEC-20XX-NNNN.toml file

pub fn id(&self) -> &Id[src]

Get advisory ID

pub fn title(&self) -> &str[src]

Get advisory title

pub fn description(&self) -> &str[src]

Get advisory description

pub fn date(&self) -> &Date[src]

Get advisory date

pub fn severity(&self) -> Option<Severity>[src]

Get the severity of this advisory if it has a CVSS v3 associated

Trait Implementations

impl Clone for Advisory[src]

impl Debug for Advisory[src]

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

impl Eq for Advisory[src]

impl FromStr for Advisory[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<Advisory> for Advisory[src]

impl Serialize for Advisory[src]

impl StructuralEq for Advisory[src]

impl StructuralPartialEq for Advisory[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.