pub trait HealthVerificationProxyInterface: Send + Sync {
type QueryHealthChecksResponseFut: Future<Output = Result<i32, Error>> + Send;
// Required method
fn query_health_checks(&self) -> Self::QueryHealthChecksResponseFut;
}
pub trait HealthVerificationProxyInterface: Send + Sync {
type QueryHealthChecksResponseFut: Future<Output = Result<i32, Error>> + Send;
// Required method
fn query_health_checks(&self) -> Self::QueryHealthChecksResponseFut;
}