pub trait HealthProxyInterface: Send + Sync {
    type GetHealthStateResponseFut: Future<Output = Result<HealthState, Error>> + Send;

    // Required method
    fn get_health_state(&self) -> Self::GetHealthStateResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§