pub trait SimpleProxyInterface: Send + Sync {
type AddResponseFut: Future<Output = Result<u16, Error>> + Send;
// Required method
fn add(&self, augend: u8, addend: u8) -> Self::AddResponseFut;
}
pub trait SimpleProxyInterface: Send + Sync {
type AddResponseFut: Future<Output = Result<u16, Error>> + Send;
// Required method
fn add(&self, augend: u8, addend: u8) -> Self::AddResponseFut;
}