pub struct RemoveOutcome {
pub installed: Vec<String>,
pub requested: Vec<String>,
pub removed: Vec<String>,
}Expand description
Result of Manager::remove.
Fields§
§installed: Vec<String>Installed names scanned (used by the no-args hint).
requested: Vec<String>Requested names (used by the no-match hint).
removed: Vec<String>Names actually removed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RemoveOutcome
impl RefUnwindSafe for RemoveOutcome
impl Send for RemoveOutcome
impl Sync for RemoveOutcome
impl Unpin for RemoveOutcome
impl UnsafeUnpin for RemoveOutcome
impl UnwindSafe for RemoveOutcome
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