Trait web_audio_api::node::AudioScheduledSourceNode
source · pub trait AudioScheduledSourceNode {
fn start(&self);
fn start_at(&self, when: f64);
fn stop(&self);
fn stop_at(&self, when: f64);
}Expand description
Interface of source nodes, controlling start and stop times. The node will emit silence before it is started, and after it has ended.