pub trait CommandProxyInterface: Send + Sync {
type TransmitResponseFut: Future<Output = Result<CommandTransmitResult, Error>> + Send;
// Required method
fn transmit(&self, data: &[u8]) -> Self::TransmitResponseFut;
}
pub trait CommandProxyInterface: Send + Sync {
type TransmitResponseFut: Future<Output = Result<CommandTransmitResult, Error>> + Send;
// Required method
fn transmit(&self, data: &[u8]) -> Self::TransmitResponseFut;
}