pub trait HealthProxyInterface: Send + Sync {
type GetHealthStateResponseFut: Future<Output = Result<HealthState, Error>> + Send;
// Required method
fn get_health_state(&self) -> Self::GetHealthStateResponseFut;
}
pub trait HealthProxyInterface: Send + Sync {
type GetHealthStateResponseFut: Future<Output = Result<HealthState, Error>> + Send;
// Required method
fn get_health_state(&self) -> Self::GetHealthStateResponseFut;
}