pub trait DeviceProxyInterface: Send + Sync {
    type GetSupportedChannelsResponseFut: Future<Output = Result<Vec<ChannelInfo>, Error>> + Send;

    // Required method
    fn get_supported_channels(&self) -> Self::GetSupportedChannelsResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§