pub trait EchoProxyInterface: Send + Sync {
    type EchoStringResponseFut: Future<Output = Result<String, Error>> + Send;

    // Required method
    fn echo_string(&self, value: &str) -> Self::EchoStringResponseFut;
}

Required Associated Types§

Required Methods§

source

fn echo_string(&self, value: &str) -> Self::EchoStringResponseFut

Implementors§