pub trait CountersProxyInterface: Send + Sync {
type GetResponseFut: Future<Output = Result<AllCounters, Error>> + Send;
type ResetResponseFut: Future<Output = Result<AllCounters, Error>> + Send;
// Required methods
fn get(&self) -> Self::GetResponseFut;
fn reset(&self) -> Self::ResetResponseFut;
}