pub enum HealthStatusEnum {
Healthy,
Degraded,
Unhealthy,
NeedsInit,
}Expand description
The health status of the API (legacy).
Variants§
Healthy
The API is healthy.
Degraded
The API is in a degraded state.
Unhealthy
The API is unhealthy.
NeedsInit
The API needs initialization.
Trait Implementations§
Source§impl Clone for HealthStatusEnum
impl Clone for HealthStatusEnum
Source§fn clone(&self) -> HealthStatusEnum
fn clone(&self) -> HealthStatusEnum
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 HealthStatusEnum
impl Debug for HealthStatusEnum
Source§impl<'de> Deserialize<'de> for HealthStatusEnum
impl<'de> Deserialize<'de> for HealthStatusEnum
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
Auto Trait Implementations§
impl Freeze for HealthStatusEnum
impl RefUnwindSafe for HealthStatusEnum
impl Send for HealthStatusEnum
impl Sync for HealthStatusEnum
impl Unpin for HealthStatusEnum
impl UnsafeUnpin for HealthStatusEnum
impl UnwindSafe for HealthStatusEnum
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