pub struct UninstallOutcome {
pub plan: UninstallPlan,
pub changes: Vec<UninstalledChange>,
pub overlay: Option<OverlaySummary>,
}Expand description
Full outcome of one uninstall::run cycle. overlay is Some when
an overlay file was merged before the plan was built; the CLI prints
a one-line operator-visible notice so a silently-consumed overlay
never masks the resulting plan.
Fields§
§plan: UninstallPlan§changes: Vec<UninstalledChange>§overlay: Option<OverlaySummary>Trait Implementations§
Auto Trait Implementations§
impl Freeze for UninstallOutcome
impl RefUnwindSafe for UninstallOutcome
impl Send for UninstallOutcome
impl Sync for UninstallOutcome
impl Unpin for UninstallOutcome
impl UnsafeUnpin for UninstallOutcome
impl UnwindSafe for UninstallOutcome
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