pub enum PkgSelectedState {
Unknown = 0,
Install = 1,
Hold = 2,
DeInstall = 3,
Purge = 4,
}
Expand description
The state that the user wishes the package to be in.
Variants§
Trait Implementations§
Source§impl Debug for PkgSelectedState
impl Debug for PkgSelectedState
Source§impl From<u8> for PkgSelectedState
impl From<u8> for PkgSelectedState
Source§impl Hash for PkgSelectedState
impl Hash for PkgSelectedState
Source§impl PartialEq for PkgSelectedState
impl PartialEq for PkgSelectedState
impl Eq for PkgSelectedState
impl StructuralPartialEq for PkgSelectedState
Auto Trait Implementations§
impl Freeze for PkgSelectedState
impl RefUnwindSafe for PkgSelectedState
impl Send for PkgSelectedState
impl Sync for PkgSelectedState
impl Unpin for PkgSelectedState
impl UnwindSafe for PkgSelectedState
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