fidl_fuchsia_settings

Trait AudioProxyInterface

Source
pub trait AudioProxyInterface: Send + Sync {
    type WatchResponseFut: Future<Output = Result<AudioSettings, Error>> + Send;
    type SetResponseFut: Future<Output = Result<AudioSetResult, Error>> + Send;

    // Required methods
    fn watch(&self) -> Self::WatchResponseFut;
    fn set(&self, settings: &AudioSettings) -> Self::SetResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn watch(&self) -> Self::WatchResponseFut

Source

fn set(&self, settings: &AudioSettings) -> Self::SetResponseFut

Implementors§