[][src]Struct rustsec::repository::support::NextUpdate

pub struct NextUpdate {
    pub version: VersionReq,
    pub date: Date,
}

Information about the next breaking change to the advisory DB. This allows us to both warn in advance when the file format used in the RustSec/advisory-db repo will have breaking changes, and also notify users with out-of-date copies of e.g. cargo-audit that they need to upgrade.

Fields

version: VersionReq

New minimum supported versions

date: Date

Date when the breaking changes are planned to be made

Trait Implementations

impl Clone for NextUpdate[src]

impl Debug for NextUpdate[src]

impl Serialize for NextUpdate[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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