pub enum RuntimeHealthState {
Unknown,
Starting,
Healthy,
Unhealthy,
}Variants§
Trait Implementations§
Source§impl Clone for RuntimeHealthState
impl Clone for RuntimeHealthState
Source§fn clone(&self) -> RuntimeHealthState
fn clone(&self) -> RuntimeHealthState
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 RuntimeHealthState
Source§impl Debug for RuntimeHealthState
impl Debug for RuntimeHealthState
Source§impl<'de> Deserialize<'de> for RuntimeHealthState
impl<'de> Deserialize<'de> for RuntimeHealthState
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 RuntimeHealthState
Source§impl PartialEq for RuntimeHealthState
impl PartialEq for RuntimeHealthState
Source§impl Serialize for RuntimeHealthState
impl Serialize for RuntimeHealthState
impl StructuralPartialEq for RuntimeHealthState
Auto Trait Implementations§
impl Freeze for RuntimeHealthState
impl RefUnwindSafe for RuntimeHealthState
impl Send for RuntimeHealthState
impl Sync for RuntimeHealthState
impl Unpin for RuntimeHealthState
impl UnsafeUnpin for RuntimeHealthState
impl UnwindSafe for RuntimeHealthState
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