pub trait InfoProxyInterface: Send + Sync {
    type GetMetricsResponseFut: Future<Output = Result<Metrics, Error>> + Send;

    // Required method
    fn get_metrics(&self) -> Self::GetMetricsResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§