pub enum TrebleCutoff {
_5kHz,
_7kHz,
_10kHz,
_15kHz,
}Expand description
Treble cutoff frequency This is used to set the treble cutoff frequency of the CS43L22
Variants§
Trait Implementations§
Source§impl Clone for TrebleCutoff
impl Clone for TrebleCutoff
Source§fn clone(&self) -> TrebleCutoff
fn clone(&self) -> TrebleCutoff
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 TrebleCutoff
Source§impl Debug for TrebleCutoff
impl Debug for TrebleCutoff
Source§impl From<TrebleCutoff> for u8
impl From<TrebleCutoff> for u8
Source§fn from(cutoff: TrebleCutoff) -> Self
fn from(cutoff: TrebleCutoff) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TrebleCutoff
impl PartialEq for TrebleCutoff
Source§fn eq(&self, other: &TrebleCutoff) -> bool
fn eq(&self, other: &TrebleCutoff) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrebleCutoff
Auto Trait Implementations§
impl Freeze for TrebleCutoff
impl RefUnwindSafe for TrebleCutoff
impl Send for TrebleCutoff
impl Sync for TrebleCutoff
impl Unpin for TrebleCutoff
impl UnsafeUnpin for TrebleCutoff
impl UnwindSafe for TrebleCutoff
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