pub trait DeviceWatcherProxyInterface: Send + Sync {
    type NextDeviceResponseFut: Future<Output = Result<DeviceWatcherNextDeviceResult, Error>> + Send;

    // Required method
    fn next_device(&self) -> Self::NextDeviceResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§