pub trait TextProxyInterface: Send + Sync {
type Send_ResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn send_(&self, text: &str) -> Self::Send_ResponseFut;
}
pub trait TextProxyInterface: Send + Sync {
type Send_ResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn send_(&self, text: &str) -> Self::Send_ResponseFut;
}