pub struct DisableOutcome {
pub installed: Vec<String>,
pub requested: Vec<String>,
pub disabled: Vec<String>,
pub already: Vec<String>,
pub missing: Vec<String>,
}Expand description
Result of Manager::disable.
Fields§
§installed: Vec<String>Currently enabled names (used by the no-args hint).
requested: Vec<String>Requested names (used by the no-match hint).
disabled: Vec<String>Names actually disabled.
already: Vec<String>Names that were already disabled (idempotent no-op).
missing: Vec<String>Requested names that matched neither enabled nor disabled skills.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DisableOutcome
impl RefUnwindSafe for DisableOutcome
impl Send for DisableOutcome
impl Sync for DisableOutcome
impl Unpin for DisableOutcome
impl UnsafeUnpin for DisableOutcome
impl UnwindSafe for DisableOutcome
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