pub enum EqualizerParameter {
Show 32 variants
Enable(bool),
HpfEnable(bool),
HpfSlope(RollOffLevel),
HpfFreq(u32),
LpfEnable(bool),
LpfSlope(RollOffLevel),
LpfFreq(u32),
LfEnable(bool),
LfType(FilterType5),
LfFreq(u32),
LfGain(f32),
LfWidth(f32),
LmfEnable(bool),
LmfType(FilterType4),
LmfFreq(u32),
LmfGain(f32),
LmfWidth(f32),
MfEnable(bool),
MfType(FilterType4),
MfFreq(u32),
MfGain(f32),
MfWidth(f32),
HmfEnable(bool),
HmfType(FilterType4),
HmfFreq(u32),
HmfGain(f32),
HmfWidth(f32),
HfEnable(bool),
HfType(FilterType5),
HfFreq(u32),
HfGain(f32),
HfWidth(f32),
}
Expand description
The DSP command specific to equalizer effects.
Variants§
Enable(bool)
HpfEnable(bool)
HpfSlope(RollOffLevel)
HpfFreq(u32)
LpfEnable(bool)
LpfSlope(RollOffLevel)
LpfFreq(u32)
LfEnable(bool)
LfType(FilterType5)
LfFreq(u32)
LfGain(f32)
LfWidth(f32)
LmfEnable(bool)
LmfType(FilterType4)
LmfFreq(u32)
LmfGain(f32)
LmfWidth(f32)
MfEnable(bool)
MfType(FilterType4)
MfFreq(u32)
MfGain(f32)
MfWidth(f32)
HmfEnable(bool)
HmfType(FilterType4)
HmfFreq(u32)
HmfGain(f32)
HmfWidth(f32)
HfEnable(bool)
HfType(FilterType5)
HfFreq(u32)
HfGain(f32)
HfWidth(f32)
Trait Implementations§
Source§impl Clone for EqualizerParameter
impl Clone for EqualizerParameter
Source§fn clone(&self) -> EqualizerParameter
fn clone(&self) -> EqualizerParameter
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 EqualizerParameter
impl Debug for EqualizerParameter
Source§impl PartialEq for EqualizerParameter
impl PartialEq for EqualizerParameter
impl StructuralPartialEq for EqualizerParameter
Auto Trait Implementations§
impl Freeze for EqualizerParameter
impl RefUnwindSafe for EqualizerParameter
impl Send for EqualizerParameter
impl Sync for EqualizerParameter
impl Unpin for EqualizerParameter
impl UnwindSafe for EqualizerParameter
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