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

    // Required method
    fn reverse(&self, input: &str) -> Self::ReverseResponseFut;
}

Required Associated Types§

Required Methods§

source

fn reverse(&self, input: &str) -> Self::ReverseResponseFut

Implementors§