pub struct UninstallSummary {
pub handle: String,
pub target: String,
pub version: String,
pub removed: Vec<String>,
pub missing: Vec<String>,
}Expand description
Outcome of an uninstall.
Fields§
§handle: String§target: String§version: String§removed: Vec<String>Files deleted from disk.
missing: Vec<String>Files the lockfile recorded that were already gone.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UninstallSummary
impl RefUnwindSafe for UninstallSummary
impl Send for UninstallSummary
impl Sync for UninstallSummary
impl Unpin for UninstallSummary
impl UnsafeUnpin for UninstallSummary
impl UnwindSafe for UninstallSummary
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