pub enum FrequencyRange {
Bass,
Mid,
High,
Full,
}
Expand description
Frequency ranges for audio analysis
Variants§
Bass
Bass frequencies (20-250 Hz)
Mid
Mid-range frequencies (250-2000 Hz)
High
High frequencies (2000-20000 Hz)
Full
Full spectrum
Trait Implementations§
Source§impl Clone for FrequencyRange
impl Clone for FrequencyRange
Source§fn clone(&self) -> FrequencyRange
fn clone(&self) -> FrequencyRange
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 FrequencyRange
impl Debug for FrequencyRange
Source§impl PartialEq for FrequencyRange
impl PartialEq for FrequencyRange
impl Copy for FrequencyRange
impl Eq for FrequencyRange
impl StructuralPartialEq for FrequencyRange
Auto Trait Implementations§
impl Freeze for FrequencyRange
impl RefUnwindSafe for FrequencyRange
impl Send for FrequencyRange
impl Sync for FrequencyRange
impl Unpin for FrequencyRange
impl UnwindSafe for FrequencyRange
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