pub struct MelFilterConfig {
pub sample_rate: usize,
pub frequency_bin_count: usize,
pub mel_bin_count: usize,
pub min_frequency: f32,
pub max_frequency: f32,
}Fields§
§sample_rate: usize§frequency_bin_count: usize§mel_bin_count: usize§min_frequency: f32§max_frequency: f32Trait Implementations§
Source§impl Clone for MelFilterConfig
impl Clone for MelFilterConfig
Source§fn clone(&self) -> MelFilterConfig
fn clone(&self) -> MelFilterConfig
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 MelFilterConfig
Source§impl Debug for MelFilterConfig
impl Debug for MelFilterConfig
Source§impl PartialEq for MelFilterConfig
impl PartialEq for MelFilterConfig
Source§fn eq(&self, other: &MelFilterConfig) -> bool
fn eq(&self, other: &MelFilterConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MelFilterConfig
Auto Trait Implementations§
impl Freeze for MelFilterConfig
impl RefUnwindSafe for MelFilterConfig
impl Send for MelFilterConfig
impl Sync for MelFilterConfig
impl Unpin for MelFilterConfig
impl UnsafeUnpin for MelFilterConfig
impl UnwindSafe for MelFilterConfig
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