#[repr(C)]pub struct ReleaseInfoChange {
pub field: String,
pub old_value: String,
pub new_value: String,
pub message: String,
pub default_action: bool,
}Expand description
A change to repository metadata from its Release file.
Fields§
§field: StringType of change, such as Origin, Codename, or Version.
old_value: StringPrevious value.
new_value: StringNew value.
message: StringLocalized description supplied by APT.
default_action: boolWhether APT configuration permits this change without confirmation.
Trait Implementations§
Source§impl Debug for ReleaseInfoChange
impl Debug for ReleaseInfoChange
Source§impl ExternType for ReleaseInfoChange
impl ExternType for ReleaseInfoChange
Auto Trait Implementations§
impl Freeze for ReleaseInfoChange
impl RefUnwindSafe for ReleaseInfoChange
impl Send for ReleaseInfoChange
impl Sync for ReleaseInfoChange
impl Unpin for ReleaseInfoChange
impl UnsafeUnpin for ReleaseInfoChange
impl UnwindSafe for ReleaseInfoChange
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more