pub trait InfoProxyInterface: Send + Sync {
type GetMetricsResponseFut: Future<Output = Result<Metrics, Error>> + Send;
// Required method
fn get_metrics(&self) -> Self::GetMetricsResponseFut;
}
pub trait InfoProxyInterface: Send + Sync {
type GetMetricsResponseFut: Future<Output = Result<Metrics, Error>> + Send;
// Required method
fn get_metrics(&self) -> Self::GetMetricsResponseFut;
}