pub enum DspMultibandEqFilterType {
Show 13 variants
Disabled,
Lowpass12Db,
Lowpass24Db,
Lowpass48Db,
Highpass12Db,
Highpass24Db,
Highpass48Db,
LowShelf,
HighShelf,
Peaking,
Bandpass,
Notch,
AllPass,
}
Variants§
Disabled
Lowpass12Db
Lowpass24Db
Lowpass48Db
Highpass12Db
Highpass24Db
Highpass48Db
LowShelf
HighShelf
Peaking
Bandpass
Notch
AllPass
Implementations§
Source§impl DspMultibandEqFilterType
impl DspMultibandEqFilterType
pub fn from( value: FMOD_DSP_MULTIBAND_EQ_FILTER_TYPE, ) -> Result<DspMultibandEqFilterType, Error>
Trait Implementations§
Source§impl Clone for DspMultibandEqFilterType
impl Clone for DspMultibandEqFilterType
Source§fn clone(&self) -> DspMultibandEqFilterType
fn clone(&self) -> DspMultibandEqFilterType
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 DspMultibandEqFilterType
impl Debug for DspMultibandEqFilterType
Source§impl From<DspMultibandEqFilterType> for FMOD_DSP_MULTIBAND_EQ_FILTER_TYPE
impl From<DspMultibandEqFilterType> for FMOD_DSP_MULTIBAND_EQ_FILTER_TYPE
Source§fn from(value: DspMultibandEqFilterType) -> FMOD_DSP_MULTIBAND_EQ_FILTER_TYPE
fn from(value: DspMultibandEqFilterType) -> FMOD_DSP_MULTIBAND_EQ_FILTER_TYPE
Converts to this type from the input type.
Source§impl PartialEq for DspMultibandEqFilterType
impl PartialEq for DspMultibandEqFilterType
impl Copy for DspMultibandEqFilterType
impl StructuralPartialEq for DspMultibandEqFilterType
Auto Trait Implementations§
impl Freeze for DspMultibandEqFilterType
impl RefUnwindSafe for DspMultibandEqFilterType
impl Send for DspMultibandEqFilterType
impl Sync for DspMultibandEqFilterType
impl Unpin for DspMultibandEqFilterType
impl UnwindSafe for DspMultibandEqFilterType
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