Skip to main content

AudioEngineHandle

Trait AudioEngineHandle 

Source
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.

Required Methods§

Implementors§