#[repr(C)]pub enum DspLowPass {
Cutoff = 0,
Resonance = 1,
}
Expand description
Parameter types for the FMOD_DSP_TYPE_LOWPASS filter.
Used with Dsp::set_parameter
and
Dsp::get_parameter
Variants§
Cutoff = 0
Lowpass Cutoff frequency in hz. 10.0 to 22000.0. Default = 5000.0.
Resonance = 1
Lowpass resonance Q value. 1.0 to 10.0. Default = 1.0.
Trait Implementations§
Source§impl Clone for DspLowPass
impl Clone for DspLowPass
Source§fn clone(&self) -> DspLowPass
fn clone(&self) -> DspLowPass
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 DspLowPass
impl Debug for DspLowPass
Source§impl PartialEq for DspLowPass
impl PartialEq for DspLowPass
Source§impl PartialOrd for DspLowPass
impl PartialOrd for DspLowPass
impl Copy for DspLowPass
impl StructuralPartialEq for DspLowPass
Auto Trait Implementations§
impl Freeze for DspLowPass
impl RefUnwindSafe for DspLowPass
impl Send for DspLowPass
impl Sync for DspLowPass
impl Unpin for DspLowPass
impl UnwindSafe for DspLowPass
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