pub trait CloseableProxyInterface: Send + Sync {
type CloseResponseFut: Future<Output = Result<CloseableCloseResult, Error>> + Send;
// Required method
fn close(&self) -> Self::CloseResponseFut;
}
pub trait CloseableProxyInterface: Send + Sync {
type CloseResponseFut: Future<Output = Result<CloseableCloseResult, Error>> + Send;
// Required method
fn close(&self) -> Self::CloseResponseFut;
}