pub struct Param {
    val: f32,
    kind: ParamRate,
    events: Vec<AutomationEvent>,
    current_event: usize,
    event_start_time: Tick,
    event_start_value: f32,
    blocks: Vec<Block>,
    block_mix_val: f32,
    summed: bool,
    dirty: bool,
}
Expand description

An AudioParam.

https://webaudio.github.io/web-audio-api/#AudioParam

Fields§

§val: f32§kind: ParamRate§events: Vec<AutomationEvent>§current_event: usize§event_start_time: Tick§event_start_value: f32§blocks: Vec<Block>

Cache of inputs from connect()ed nodes

§block_mix_val: f32

The value of all connect()ed inputs mixed together, for this frame

§summed: bool

If true, blocks has been summed together into a single block

§dirty: bool

Implementations§

source§

impl Param

source

pub fn new(val: f32) -> Self

source

pub fn new_krate(val: f32) -> Self

source

pub fn update(&mut self, block: &BlockInfo, tick: Tick) -> bool

Update the value of this param to the next

Invariant: This should be called with monotonically increasing ticks, and Tick(0) should never be skipped.

Returns true if anything changed

source

pub fn value(&self) -> f32

source

pub fn set_rate(&mut self, rate: ParamRate)

source

pub(crate) fn insert_event(&mut self, event: AutomationEvent)

source

pub(crate) fn add_block(&mut self, block: Block)

source

pub(crate) fn flush_to_block(&mut self, info: &BlockInfo, block: &mut [f32])

Flush an entire block of values into a buffer

Only for use with AudioListener.

Invariant: block must be a FRAMES_PER_BLOCK length array filled with silence

Auto Trait Implementations§

§

impl RefUnwindSafe for Param

§

impl Send for Param

§

impl Sync for Param

§

impl Unpin for Param

§

impl UnwindSafe for Param

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V