pub enum DynamicsParameter {
Enable(bool),
CompEnable(bool),
CompDetectMode(LevelDetectMode),
CompThreshold(i32),
CompRatio(f32),
CompAttack(u32),
CompRelease(u32),
CompGain(f32),
LevelerEnable(bool),
LevelerMode(LevelerMode),
LevelerMakeup(u32),
LevelerReduce(u32),
}
Expand description
The DSP command specific to dynamics effects.
Variants§
Enable(bool)
CompEnable(bool)
CompDetectMode(LevelDetectMode)
CompThreshold(i32)
CompRatio(f32)
CompAttack(u32)
CompRelease(u32)
CompGain(f32)
LevelerEnable(bool)
LevelerMode(LevelerMode)
LevelerMakeup(u32)
LevelerReduce(u32)
Trait Implementations§
Source§impl Clone for DynamicsParameter
impl Clone for DynamicsParameter
Source§fn clone(&self) -> DynamicsParameter
fn clone(&self) -> DynamicsParameter
Returns a duplicate 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 moreSource§impl Debug for DynamicsParameter
impl Debug for DynamicsParameter
Source§impl PartialEq for DynamicsParameter
impl PartialEq for DynamicsParameter
impl StructuralPartialEq for DynamicsParameter
Auto Trait Implementations§
impl Freeze for DynamicsParameter
impl RefUnwindSafe for DynamicsParameter
impl Send for DynamicsParameter
impl Sync for DynamicsParameter
impl Unpin for DynamicsParameter
impl UnwindSafe for DynamicsParameter
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