pub enum RuntimeHealth {
Healthy,
Degraded,
Unhealthy,
}Expand description
Possible health states for a runtime.
Variants§
Healthy
Runtime environment is fully operational.
Degraded
Runtime is operational but experiencing issues.
Unhealthy
Runtime is not operational.
Trait Implementations§
Source§impl Clone for RuntimeHealth
impl Clone for RuntimeHealth
Source§fn clone(&self) -> RuntimeHealth
fn clone(&self) -> RuntimeHealth
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 RuntimeHealth
impl Debug for RuntimeHealth
Source§impl<'de> Deserialize<'de> for RuntimeHealth
impl<'de> Deserialize<'de> for RuntimeHealth
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 RuntimeHealth
impl PartialEq for RuntimeHealth
Source§fn eq(&self, other: &RuntimeHealth) -> bool
fn eq(&self, other: &RuntimeHealth) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeHealth
impl Serialize for RuntimeHealth
impl Eq for RuntimeHealth
impl StructuralPartialEq for RuntimeHealth
Auto Trait Implementations§
impl Freeze for RuntimeHealth
impl RefUnwindSafe for RuntimeHealth
impl Send for RuntimeHealth
impl Sync for RuntimeHealth
impl Unpin for RuntimeHealth
impl UnsafeUnpin for RuntimeHealth
impl UnwindSafe for RuntimeHealth
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