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§
type GetSupportedChannelsResponseFut: Future<Output = Result<Vec<ChannelInfo>, Error>> + Send
Required Methods§
fn get_supported_channels(&self) -> Self::GetSupportedChannelsResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".