Trait PlaybackProxyInterface

Source
pub trait PlaybackProxyInterface: Send + Sync {
    type ConfigurePlaybackResponseFut: Future<Output = Result<PlaybackConfigurePlaybackResult, Error>> + Send;

    // Required method
    fn configure_playback(
        &self,
        source_config: &PlaybackSourceConfig,
    ) -> Self::ConfigurePlaybackResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§