pub enum SupervisorHealthStatus {
Ok,
Degraded,
Failing,
Unresponsive,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for SupervisorHealthStatus
impl Clone for SupervisorHealthStatus
Source§fn clone(&self) -> SupervisorHealthStatus
fn clone(&self) -> SupervisorHealthStatus
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 moreimpl Copy for SupervisorHealthStatus
Source§impl Debug for SupervisorHealthStatus
impl Debug for SupervisorHealthStatus
Source§impl<'de> Deserialize<'de> for SupervisorHealthStatus
impl<'de> Deserialize<'de> for SupervisorHealthStatus
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
impl Eq for SupervisorHealthStatus
Source§impl PartialEq for SupervisorHealthStatus
impl PartialEq for SupervisorHealthStatus
Source§impl Serialize for SupervisorHealthStatus
impl Serialize for SupervisorHealthStatus
impl StructuralPartialEq for SupervisorHealthStatus
Auto Trait Implementations§
impl Freeze for SupervisorHealthStatus
impl RefUnwindSafe for SupervisorHealthStatus
impl Send for SupervisorHealthStatus
impl Sync for SupervisorHealthStatus
impl Unpin for SupervisorHealthStatus
impl UnsafeUnpin for SupervisorHealthStatus
impl UnwindSafe for SupervisorHealthStatus
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