pub trait SimpleProxyInterface: Send + Sync {
    type AddResponseFut: Future<Output = Result<u16, Error>> + Send;

    // Required method
    fn add(&self, augend: u8, addend: u8) -> Self::AddResponseFut;
}

Required Associated Types§

Required Methods§

source

fn add(&self, augend: u8, addend: u8) -> Self::AddResponseFut

Implementors§