pub enum HealthCheckEvent {
    Starting {
        total_keys: usize,
    },
    KeyProcessed,
    Complete {
        nb_keys_updated: usize,
    },
}Expand description
Events emitted during a health_check operation.
Variants§
Starting
Indicates the start of the health_check operation.
KeyProcessed
Indicates that a key has been processed
Complete
Indicates that the health_check operation has completed successfully.
Trait Implementations§
Source§impl Clone for HealthCheckEvent
 
impl Clone for HealthCheckEvent
Source§fn clone(&self) -> HealthCheckEvent
 
fn clone(&self) -> HealthCheckEvent
Returns a copy 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 HealthCheckEvent
 
impl Debug for HealthCheckEvent
Source§impl<'de> Deserialize<'de> for HealthCheckEvent
 
impl<'de> Deserialize<'de> for HealthCheckEvent
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
Source§impl PartialEq for HealthCheckEvent
 
impl PartialEq for HealthCheckEvent
Source§impl Serialize for HealthCheckEvent
 
impl Serialize for HealthCheckEvent
impl Eq for HealthCheckEvent
impl StructuralPartialEq for HealthCheckEvent
Auto Trait Implementations§
impl Freeze for HealthCheckEvent
impl RefUnwindSafe for HealthCheckEvent
impl Send for HealthCheckEvent
impl Sync for HealthCheckEvent
impl Unpin for HealthCheckEvent
impl UnwindSafe for HealthCheckEvent
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