pub trait AudioEngineHandle: Send {
// Required methods
fn start(&self) -> Result<(), BackendError>;
fn stop(&self) -> Result<(), BackendError>;
fn is_running(&self) -> bool;
}Expand description
Handle to a running audio engine. Start/stop control.