tests_fuzz::utils::health

Trait HealthChecker

Source
pub trait HealthChecker: Send + Sync {
    // Required methods
    fn check<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn wait_timeout(&self) -> Duration;
}
Expand description

Check health of the processing.

Required Methods§

Source

fn check<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn wait_timeout(&self) -> Duration

Implementors§