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

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

RustSec Security Advisories

Fields

metadata: Metadata

The [advisory] section of a RustSec advisory

versions: Versions

Versions related to this advisory which are patched or unaffected.

This maps to the [versions] section of an advisory, but we can't actually start using that until clients have all updated, so for backwards compatibility we still use [advisory.patched_versions] and [advisory.unaffected_versions], but load them into this section.

affected: Option<Affected>

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

Methods

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 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: 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, 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.