pub trait AudioOffloadControllerProxyInterface: Send + Sync { type StopResponseFut: Future<Output = Result<(), Error>> + Send; // Required method fn stop(&self) -> Self::StopResponseFut; }