pub trait ProviderProxyInterface: Send + Sync {
type GetCurrentResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn get_current(&self) -> Self::GetCurrentResponseFut;
}
pub trait ProviderProxyInterface: Send + Sync {
type GetCurrentResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn get_current(&self) -> Self::GetCurrentResponseFut;
}