pub enum HealthStatusType {
Healthy,
Warning,
Unhealthy,
}Expand description
Health status types
Variants§
Healthy
System is healthy
Warning
System has warnings but is functional
Unhealthy
System is unhealthy
Trait Implementations§
Source§impl Clone for HealthStatusType
impl Clone for HealthStatusType
Source§fn clone(&self) -> HealthStatusType
fn clone(&self) -> HealthStatusType
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 HealthStatusType
impl Debug for HealthStatusType
Source§impl<'de> Deserialize<'de> for HealthStatusType
impl<'de> Deserialize<'de> for HealthStatusType
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 HealthStatusType
impl PartialEq for HealthStatusType
Source§impl Serialize for HealthStatusType
impl Serialize for HealthStatusType
impl Copy for HealthStatusType
impl Eq for HealthStatusType
impl StructuralPartialEq for HealthStatusType
Auto Trait Implementations§
impl Freeze for HealthStatusType
impl RefUnwindSafe for HealthStatusType
impl Send for HealthStatusType
impl Sync for HealthStatusType
impl Unpin for HealthStatusType
impl UnsafeUnpin for HealthStatusType
impl UnwindSafe for HealthStatusType
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