pub enum DistroState {
Installed,
Running,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for DistroState
impl Clone for DistroState
Source§fn clone(&self) -> DistroState
fn clone(&self) -> DistroState
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 DistroState
impl Debug for DistroState
impl Eq for DistroState
Source§impl PartialEq for DistroState
impl PartialEq for DistroState
Source§fn eq(&self, other: &DistroState) -> bool
fn eq(&self, other: &DistroState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DistroState
impl Serialize for DistroState
impl StructuralPartialEq for DistroState
Auto Trait Implementations§
impl Freeze for DistroState
impl RefUnwindSafe for DistroState
impl Send for DistroState
impl Sync for DistroState
impl Unpin for DistroState
impl UnsafeUnpin for DistroState
impl UnwindSafe for DistroState
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