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