pub enum UninstallOutcome {
Removed,
RestoredBackup {
backup: PathBuf,
},
ForceRemoved,
ForceRestoredBackup {
backup: PathBuf,
},
NotFound,
UserModified,
DryRun,
}Variants§
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