pub trait DeviceProxyInterface: Send + Sync {
type PingResponseFut: Future<Output = Result<u32, Error>> + Send;
// Required method
fn ping(&self) -> Self::PingResponseFut;
}
pub trait DeviceProxyInterface: Send + Sync {
type PingResponseFut: Future<Output = Result<u32, Error>> + Send;
// Required method
fn ping(&self) -> Self::PingResponseFut;
}