pub trait CloseableProxyInterface: Send + Sync {
    type CloseResponseFut: Future<Output = Result<CloseableCloseResult, Error>> + Send;

    // Required method
    fn close(&self) -> Self::CloseResponseFut;
}

Required Associated Types§

Required Methods§

source

fn close(&self) -> Self::CloseResponseFut

Implementors§