pub enum RecoveryEvent {
RecoveryStarted(RecoveryReason),
RecoveryComplete(RecoveryReason),
}Expand description
Events emitted while evaluation recovery state.
Variants§
RecoveryStarted(RecoveryReason)
Recovery just started for the given reason.
RecoveryComplete(RecoveryReason)
Recovery completed once metrics returned to safe bounds.
Trait Implementations§
Source§impl Clone for RecoveryEvent
impl Clone for RecoveryEvent
Source§fn clone(&self) -> RecoveryEvent
fn clone(&self) -> RecoveryEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecoveryEvent
impl Debug for RecoveryEvent
Source§impl PartialEq for RecoveryEvent
impl PartialEq for RecoveryEvent
impl Copy for RecoveryEvent
impl Eq for RecoveryEvent
impl StructuralPartialEq for RecoveryEvent
Auto Trait Implementations§
impl Freeze for RecoveryEvent
impl RefUnwindSafe for RecoveryEvent
impl Send for RecoveryEvent
impl Sync for RecoveryEvent
impl Unpin for RecoveryEvent
impl UnwindSafe for RecoveryEvent
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