pub trait DeviceWatcherProxyInterface: Send + Sync {
type NextDeviceResponseFut: Future<Output = Result<DeviceWatcherNextDeviceResult, Error>> + Send;
// Required method
fn next_device(&self) -> Self::NextDeviceResponseFut;
}
pub trait DeviceWatcherProxyInterface: Send + Sync {
type NextDeviceResponseFut: Future<Output = Result<DeviceWatcherNextDeviceResult, Error>> + Send;
// Required method
fn next_device(&self) -> Self::NextDeviceResponseFut;
}