pub trait ManagerProxyInterface: Send + Sync {
type GcResponseFut: Future<Output = Result<ManagerGcResult, Error>> + Send;
// Required method
fn gc(&self) -> Self::GcResponseFut;
}
pub trait ManagerProxyInterface: Send + Sync {
type GcResponseFut: Future<Output = Result<ManagerGcResult, Error>> + Send;
// Required method
fn gc(&self) -> Self::GcResponseFut;
}