pub enum CurrentState {
ConfigFiles,
HalfConfigured,
HalfInstalled,
Installed,
NotInstalled,
UnPacked,
}Expand description
Current state of the package installed on the system.
Variants§
Trait Implementations§
Source§impl Clone for CurrentState
impl Clone for CurrentState
Source§fn clone(&self) -> CurrentState
fn clone(&self) -> CurrentState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CurrentState
impl Debug for CurrentState
Source§impl<'de> Deserialize<'de> for CurrentState
impl<'de> Deserialize<'de> for CurrentState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CurrentState
impl PartialEq for CurrentState
Source§fn eq(&self, other: &CurrentState) -> bool
fn eq(&self, other: &CurrentState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CurrentState
impl Serialize for CurrentState
impl StructuralPartialEq for CurrentState
Auto Trait Implementations§
impl Freeze for CurrentState
impl RefUnwindSafe for CurrentState
impl Send for CurrentState
impl Sync for CurrentState
impl Unpin for CurrentState
impl UnsafeUnpin for CurrentState
impl UnwindSafe for CurrentState
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