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;
}