#[repr(C)]pub enum DspHighPassSimple {
Cutoff = 0,
Unused = 1,
}
Expand description
Parameter types for the FMOD_DSP_TYPE_HIGHPASS_SIMPLE filter.
This is a very simple single-order high pass filter.
The emphasis is on speed rather than accuracy, so this should not be used for task requiring
critical filtering.
Used with Dsp::set_parameter
and
Dsp::get_parameter
.
Variants§
Cutoff = 0
Highpass cutoff frequency in hz. 10.0 to 22000.0. Default = 1000.0
Unused = 1
Useless enum
Trait Implementations§
Source§impl Clone for DspHighPassSimple
impl Clone for DspHighPassSimple
Source§fn clone(&self) -> DspHighPassSimple
fn clone(&self) -> DspHighPassSimple
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 DspHighPassSimple
impl Debug for DspHighPassSimple
Source§impl PartialEq for DspHighPassSimple
impl PartialEq for DspHighPassSimple
Source§impl PartialOrd for DspHighPassSimple
impl PartialOrd for DspHighPassSimple
impl Copy for DspHighPassSimple
impl StructuralPartialEq for DspHighPassSimple
Auto Trait Implementations§
impl Freeze for DspHighPassSimple
impl RefUnwindSafe for DspHighPassSimple
impl Send for DspHighPassSimple
impl Sync for DspHighPassSimple
impl Unpin for DspHighPassSimple
impl UnwindSafe for DspHighPassSimple
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