pub enum StateVariableMode {
LowPass,
HighPass,
BandPass,
Notch,
}Expand description
Output tap selected from a StateVariableFilter.
Variants§
LowPass
Low-pass output.
HighPass
High-pass output.
BandPass
Band-pass output.
Notch
Notch (low + high) output.
Trait Implementations§
Source§impl Clone for StateVariableMode
impl Clone for StateVariableMode
Source§fn clone(&self) -> StateVariableMode
fn clone(&self) -> StateVariableMode
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 StateVariableMode
Source§impl Debug for StateVariableMode
impl Debug for StateVariableMode
impl Eq for StateVariableMode
Source§impl PartialEq for StateVariableMode
impl PartialEq for StateVariableMode
impl StructuralPartialEq for StateVariableMode
Auto Trait Implementations§
impl Freeze for StateVariableMode
impl RefUnwindSafe for StateVariableMode
impl Send for StateVariableMode
impl Sync for StateVariableMode
impl Unpin for StateVariableMode
impl UnsafeUnpin for StateVariableMode
impl UnwindSafe for StateVariableMode
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