pub trait AudioModeProxyInterface: Send + Sync {
type SetRoleResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_role(&self, role: Role) -> Self::SetRoleResponseFut;
}
pub trait AudioModeProxyInterface: Send + Sync {
type SetRoleResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_role(&self, role: Role) -> Self::SetRoleResponseFut;
}