pub enum Typ {
Lowpass,
Highpass,
Bandpass,
Allpass,
Notch,
Peaking,
Lowshelf,
Highshelf,
IHo,
}
Expand description
Filter type
Variants§
Lowpass
A lowpass
Highpass
A highpass
Bandpass
A bandpass
Allpass
An allpass
Notch
A notch
Peaking
A peaking filter
Lowshelf
A low shelf
Highshelf
A high shelf
IHo
Integrator over harmonic oscillator
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Typ
impl<'de> Deserialize<'de> for Typ
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialOrd for Typ
impl PartialOrd for Typ
impl Copy for Typ
impl StructuralPartialEq for Typ
Auto Trait Implementations§
impl Freeze for Typ
impl RefUnwindSafe for Typ
impl Send for Typ
impl Sync for Typ
impl Unpin for Typ
impl UnwindSafe for Typ
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