pub struct Remove {
pub remove: String,
pub package: Option<String>,
pub version: Option<Version>,
pub architecture: Option<String>,
pub extra: HashMap<String, String>,
}Expand description
A stanza telling APT to remove a specific package.
Fields§
§remove: StringThe identifier of the package to remove.
Must reference the identifier of a package in the package universe
(see Package::id).
package: Option<String>The name of the package to remove.
While optional, it is highly recommend to set this field to the value of the field
(Package::package) of the corresponding
package in the package universe.
version: Option<Version>The version of the package to remove.
While optional, it is highly recommend to set this field to the value of the field
(Package::version) of the corresponding
package in the package universe.
architecture: Option<String>The architecture of the package to remove.
While optional, it is highly recommend to set this field to the value of the field
(Package::architecture) of the corresponding
package in the package universe.
extra: HashMap<String, String>Extra optional fields supported by Package stanzas.