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