pub struct UpdateReport {
pub changes: Vec<UpdateChange>,
pub skipped: Vec<UpdateSkip>,
pub applied: bool,
}Expand description
Result of an update run.
Fields§
§changes: Vec<UpdateChange>§skipped: Vec<UpdateSkip>Entries whose new version was not written because the installed files had drifted from the lockfile.
applied: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for UpdateReport
impl RefUnwindSafe for UpdateReport
impl Send for UpdateReport
impl Sync for UpdateReport
impl Unpin for UpdateReport
impl UnsafeUnpin for UpdateReport
impl UnwindSafe for UpdateReport
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