pub trait DeviceProxyInterface: Send + Sync {
    type PingResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn ping(&self) -> Self::PingResponseFut;
}

Required Associated Types§

source

type PingResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

source

fn ping(&self) -> Self::PingResponseFut

Implementors§