pub struct AudioParamDescriptor {
pub name: String,
pub automation_rate: AutomationRate,
pub default_value: f32,
pub min_value: f32,
pub max_value: f32,
}
Expand description
Options for constructing an AudioParam
Fields§
§name: String
§automation_rate: AutomationRate
§default_value: f32
§min_value: f32
§max_value: f32
Trait Implementations§
Source§impl Clone for AudioParamDescriptor
impl Clone for AudioParamDescriptor
Source§fn clone(&self) -> AudioParamDescriptor
fn clone(&self) -> AudioParamDescriptor
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for AudioParamDescriptor
impl RefUnwindSafe for AudioParamDescriptor
impl Send for AudioParamDescriptor
impl Sync for AudioParamDescriptor
impl Unpin for AudioParamDescriptor
impl UnwindSafe for AudioParamDescriptor
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