pub enum Action {
Install(Install),
Remove(Remove),
Autoremove(Autoremove),
}
Expand description
A stanza in an Answer::Solution
.
Variants§
Install(Install)
A single Install
stanza in an Answer::Solution
.
Remove(Remove)
A single Remove
stanza in an Answer::Solution
.
Autoremove(Autoremove)
A single Autoremove
stanza in an Answer::Solution
.
Trait Implementations§
Source§impl From<Autoremove> for Action
impl From<Autoremove> for Action
Source§fn from(value: Autoremove) -> Self
fn from(value: Autoremove) -> Self
Converts to this type from the input type.
impl Eq for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
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