pub trait Super_ProxyInterface: Send + Sync {
type FooResponseFut: Future<Output = Result<i64, Error>> + Send;
// Required method
fn foo(&self, s: &str) -> Self::FooResponseFut;
}
pub trait Super_ProxyInterface: Send + Sync {
type FooResponseFut: Future<Output = Result<i64, Error>> + Send;
// Required method
fn foo(&self, s: &str) -> Self::FooResponseFut;
}