pub enum ServiceHealthStatus {
Healthy,
Degraded,
Unhealthy,
Maintenance,
}
Expand description
Service health status
Variants§
Healthy
Service is healthy
Degraded
Service is degraded
Unhealthy
Service is unhealthy
Maintenance
Service is maintenance mode
Trait Implementations§
Source§impl Clone for ServiceHealthStatus
impl Clone for ServiceHealthStatus
Source§fn clone(&self) -> ServiceHealthStatus
fn clone(&self) -> ServiceHealthStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ServiceHealthStatus
impl Debug for ServiceHealthStatus
Source§impl<'de> Deserialize<'de> for ServiceHealthStatus
impl<'de> Deserialize<'de> for ServiceHealthStatus
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 ServiceHealthStatus
impl PartialEq for ServiceHealthStatus
Source§impl Serialize for ServiceHealthStatus
impl Serialize for ServiceHealthStatus
impl StructuralPartialEq for ServiceHealthStatus
Auto Trait Implementations§
impl Freeze for ServiceHealthStatus
impl RefUnwindSafe for ServiceHealthStatus
impl Send for ServiceHealthStatus
impl Sync for ServiceHealthStatus
impl Unpin for ServiceHealthStatus
impl UnwindSafe for ServiceHealthStatus
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