pub trait ServiceAProxyInterface: Send + Sync {
    type FooResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn foo(&self) -> Self::FooResponseFut;
}

Required Associated Types§

Required Methods§

source

fn foo(&self) -> Self::FooResponseFut

Implementors§