pub struct AutoRemoval {
    pub bugs: Vec<String>,
    pub bugs_dependencies: Option<Vec<String>>,
    pub buggy_dependencies: Option<Vec<String>>,
    pub dependencies_only: bool,
    pub last_checked: DateTime<Utc>,
    pub removal_date: DateTime<Utc>,
    pub source: String,
    pub version: PackageVersion,
    pub rdeps: Option<Vec<String>>,
}
Expand description

An autoremoval

Fields

bugs: Vec<String>

The package’s RC bugs causing auto-removal.

bugs_dependencies: Option<Vec<String>>

The RC bugs of dependencies causing auto-removal.

buggy_dependencies: Option<Vec<String>>

List of RC-buggy dependencies causing auto-removal.

dependencies_only: bool

Auto-removal is caused by dependencies.

last_checked: DateTime<Utc>

Date of the last check.

removal_date: DateTime<Utc>

Auto-removal date.

source: String

Source package name.

version: PackageVersion

Package version.

rdeps: Option<Vec<String>>

List of reverse dependencies that will also be auto-removed.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.