pub enum ComponentStatus {
Ok,
Unknown,
Outdated,
NotDetected,
}Expand description
Component status
Variants§
Ok
Component is up to date
Unknown
Component detected but version unknown
Outdated
Component is outdated
NotDetected
Component not detected
Trait Implementations§
Source§impl Clone for ComponentStatus
impl Clone for ComponentStatus
Source§fn clone(&self) -> ComponentStatus
fn clone(&self) -> ComponentStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 ComponentStatus
impl Debug for ComponentStatus
Source§impl Ord for ComponentStatus
impl Ord for ComponentStatus
Source§fn cmp(&self, other: &ComponentStatus) -> Ordering
fn cmp(&self, other: &ComponentStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ComponentStatus
impl PartialEq for ComponentStatus
Source§impl PartialOrd for ComponentStatus
impl PartialOrd for ComponentStatus
Source§impl Serialize for ComponentStatus
impl Serialize for ComponentStatus
impl Copy for ComponentStatus
impl Eq for ComponentStatus
impl StructuralPartialEq for ComponentStatus
Auto Trait Implementations§
impl Freeze for ComponentStatus
impl RefUnwindSafe for ComponentStatus
impl Send for ComponentStatus
impl Sync for ComponentStatus
impl Unpin for ComponentStatus
impl UnwindSafe for ComponentStatus
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