[][src]Struct rustsec::report::Report

pub struct Report {
    pub database: DatabaseInfo,
    pub lockfile: LockfileInfo,
    pub settings: Settings,
    pub vulnerabilities: VulnerabilityInfo,
    pub warnings: Vec<Warning>,
}

Vulnerability report for a given lockfile

Fields

database: DatabaseInfo

Information about the advisory database

lockfile: LockfileInfo

Information about the audited lockfile

settings: Settings

Settings used when generating report

vulnerabilities: VulnerabilityInfo

Vulnerabilities detected in project

warnings: Vec<Warning>

Warnings about dependencies (from e.g. informational advisories)

Methods

impl Report[src]

pub fn generate(db: &Database, lockfile: &Lockfile, settings: &Settings) -> Self[src]

Generate a report for the given advisory database and lockfile

Trait Implementations

impl Clone for Report[src]

impl Debug for Report[src]

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

impl Serialize for Report[src]

Auto Trait Implementations

impl RefUnwindSafe for Report

impl Send for Report

impl Sync for Report

impl Unpin for Report

impl UnwindSafe for Report

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