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