pub trait CommandProxyInterface: Send + Sync {
    type TransmitResponseFut: Future<Output = Result<CommandTransmitResult, Error>> + Send;

    // Required method
    fn transmit(&self, data: &[u8]) -> Self::TransmitResponseFut;
}

Required Associated Types§

Required Methods§

source

fn transmit(&self, data: &[u8]) -> Self::TransmitResponseFut

Implementors§