pub trait Health: Send + Sync + 'static + Clone {
    fn alive<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = ApplicationStatus> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn ready<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = ApplicationStatus> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors