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