pub enum BiquadKind {
LowPass,
HighPass,
BandPass,
Notch,
Peaking {
gain_db: f32,
},
}Expand description
Response type of a BiquadFilter.
Variants§
LowPass
Low-pass response.
HighPass
High-pass response.
BandPass
Band-pass response.
Notch
Band-reject (notch) response.
Peaking
Peaking EQ with the given gain.
Trait Implementations§
Source§impl Clone for BiquadKind
impl Clone for BiquadKind
Source§fn clone(&self) -> BiquadKind
fn clone(&self) -> BiquadKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BiquadKind
Source§impl Debug for BiquadKind
impl Debug for BiquadKind
Source§impl PartialEq for BiquadKind
impl PartialEq for BiquadKind
impl StructuralPartialEq for BiquadKind
Auto Trait Implementations§
impl Freeze for BiquadKind
impl RefUnwindSafe for BiquadKind
impl Send for BiquadKind
impl Sync for BiquadKind
impl Unpin for BiquadKind
impl UnsafeUnpin for BiquadKind
impl UnwindSafe for BiquadKind
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