pub trait ManagerProxyInterface: Send + Sync {
    type GcResponseFut: Future<Output = Result<ManagerGcResult, Error>> + Send;

    // Required method
    fn gc(&self) -> Self::GcResponseFut;
}

Required Associated Types§

Required Methods§

source

fn gc(&self) -> Self::GcResponseFut

Implementors§