pub enum LadderMode {
LP6,
LP12,
LP18,
LP24,
HP6,
HP12,
HP18,
HP24,
BP12,
BP24,
N12,
}
Expand description
The Ladder mode, You can choose between low pass, high pass, band pass and notch.
Variants§
Trait Implementations§
Source§impl Clone for LadderMode
impl Clone for LadderMode
Source§fn clone(&self) -> LadderMode
fn clone(&self) -> LadderMode
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 LadderMode
impl Debug for LadderMode
Source§impl Display for LadderMode
impl Display for LadderMode
Source§impl PartialEq for LadderMode
impl PartialEq for LadderMode
impl Copy for LadderMode
impl StructuralPartialEq for LadderMode
Auto Trait Implementations§
impl Freeze for LadderMode
impl RefUnwindSafe for LadderMode
impl Send for LadderMode
impl Sync for LadderMode
impl Unpin for LadderMode
impl UnwindSafe for LadderMode
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