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

    // Required method
    fn send_(&self, text: &str) -> Self::Send_ResponseFut;
}

Required Associated Types§

Required Methods§

source

fn send_(&self, text: &str) -> Self::Send_ResponseFut

Implementors§