pub(crate) struct ConstantSourceNode {
channel_info: ChannelInfo,
offset: Param,
start_at: Option<Tick>,
stop_at: Option<Tick>,
onended_callback: Option<OnEndedCallback>,
}
Fields§
§channel_info: ChannelInfo
§offset: Param
§start_at: Option<Tick>
§stop_at: Option<Tick>
§onended_callback: Option<OnEndedCallback>
Implementations§
source§impl ConstantSourceNode
impl ConstantSourceNode
fn should_play_at(&mut self, tick: Tick) -> ShouldPlay
fn start(&mut self, tick: Tick) -> bool
fn stop(&mut self, tick: Tick) -> bool
fn maybe_trigger_onended_callback(&mut self)
fn handle_source_node_message( &mut self, message: AudioScheduledSourceNodeMessage, sample_rate: f32, )
source§impl ConstantSourceNode
impl ConstantSourceNode
pub fn new( options: ConstantSourceNodeOptions, channel_info: ChannelInfo, ) -> Self
pub fn update_parameters(&mut self, info: &BlockInfo, tick: Tick) -> bool
Trait Implementations§
source§impl AudioNodeCommon for ConstantSourceNode
impl AudioNodeCommon for ConstantSourceNode
fn channel_info(&self) -> &ChannelInfo
fn channel_info_mut(&mut self) -> &mut ChannelInfo
source§impl AudioNodeEngine for ConstantSourceNode
impl AudioNodeEngine for ConstantSourceNode
fn node_type(&self) -> AudioNodeType
fn process(&mut self, inputs: Chunk, info: &BlockInfo) -> Chunk
fn input_count(&self) -> u32
fn get_param(&mut self, id: ParamType) -> &mut Param
source§fn message_specific(&mut self, msg: AudioNodeMessage, sample_rate: f32)
fn message_specific(&mut self, msg: AudioNodeMessage, sample_rate: f32)
Messages specific to this node
fn message(&mut self, msg: AudioNodeMessage, sample_rate: f32)
fn output_count(&self) -> u32
source§fn channel_count(&self) -> u8
fn channel_count(&self) -> u8
Number of input channels for each input port
fn channel_count_mode(&self) -> ChannelCountMode
fn channel_interpretation(&self) -> ChannelInterpretation
fn set_channel_interpretation(&mut self, i: ChannelInterpretation)
fn set_channel_count(&mut self, c: u8)
fn set_channel_count_mode(&mut self, m: ChannelCountMode)
source§fn destination_data(&mut self) -> Option<Chunk>
fn destination_data(&mut self) -> Option<Chunk>
If we’re the destination node, extract the contained data
fn set_listenerdata(&mut self, _: Block)
Auto Trait Implementations§
impl Freeze for ConstantSourceNode
impl !RefUnwindSafe for ConstantSourceNode
impl Send for ConstantSourceNode
impl !Sync for ConstantSourceNode
impl Unpin for ConstantSourceNode
impl !UnwindSafe for ConstantSourceNode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more