pub struct DynamicsCompressorNode { /* private fields */ }Implementations§
Source§impl DynamicsCompressorNode
impl DynamicsCompressorNode
pub fn threshold(&self) -> AudioParamHandle
pub fn knee(&self) -> AudioParamHandle
pub fn ratio(&self) -> AudioParamHandle
pub fn attack(&self) -> AudioParamHandle
pub fn release(&self) -> AudioParamHandle
pub fn reduction(&self) -> f32
pub fn param(&self, name: &str) -> Option<AudioParamHandle>
pub fn parameter(&self, name: &str) -> Option<AudioParamHandle>
Source§impl DynamicsCompressorNode
impl DynamicsCompressorNode
pub fn channel_count(&self) -> usize
pub fn channel_count_mode(&self) -> ChannelCountMode
pub fn channel_interpretation(&self) -> ChannelInterpretation
pub fn try_set_channel_config( &self, channel_count: usize, channel_count_mode: ChannelCountMode, channel_interpretation: ChannelInterpretation, ) -> Result<(), GraphError>
Trait Implementations§
Source§impl Clone for DynamicsCompressorNode
impl Clone for DynamicsCompressorNode
Source§fn clone(&self) -> DynamicsCompressorNode
fn clone(&self) -> DynamicsCompressorNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DynamicsCompressorNode
impl RefUnwindSafe for DynamicsCompressorNode
impl Send for DynamicsCompressorNode
impl Sync for DynamicsCompressorNode
impl Unpin for DynamicsCompressorNode
impl UnsafeUnpin for DynamicsCompressorNode
impl UnwindSafe for DynamicsCompressorNode
Blanket Implementations§
impl<T> AudioNodeHandle for Twhere
T: AudioNodeHandlePrivate + ?Sized,
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