pub trait ProviderProxyInterface: Send + Sync {
type SocketResponseFut: Future<Output = Result<ProviderSocketResult, Error>> + Send;
// Required method
fn socket(&self, kind: Kind) -> Self::SocketResponseFut;
}
pub trait ProviderProxyInterface: Send + Sync {
type SocketResponseFut: Future<Output = Result<ProviderSocketResult, Error>> + Send;
// Required method
fn socket(&self, kind: Kind) -> Self::SocketResponseFut;
}