Trait CloseableProxyInterface

Source
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§

Source§

impl CloseableProxyInterface for CloseableProxy

Source§

type CloseResponseFut = QueryResponseFut<Result<(), i32>, FDomainResourceDialect>