pub struct AudioFrontendConfig {
pub stft: StftConfig,
pub mel: MelFilterConfig,
pub log_mel: LogMelConfig,
pub layout: AudioFeatureLayout,
}Fields§
§stft: StftConfig§mel: MelFilterConfig§log_mel: LogMelConfig§layout: AudioFeatureLayoutImplementations§
Trait Implementations§
Source§impl Clone for AudioFrontendConfig
impl Clone for AudioFrontendConfig
Source§fn clone(&self) -> AudioFrontendConfig
fn clone(&self) -> AudioFrontendConfig
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 AudioFrontendConfig
Source§impl Debug for AudioFrontendConfig
impl Debug for AudioFrontendConfig
Source§impl PartialEq for AudioFrontendConfig
impl PartialEq for AudioFrontendConfig
Source§fn eq(&self, other: &AudioFrontendConfig) -> bool
fn eq(&self, other: &AudioFrontendConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AudioFrontendConfig
Auto Trait Implementations§
impl Freeze for AudioFrontendConfig
impl RefUnwindSafe for AudioFrontendConfig
impl Send for AudioFrontendConfig
impl Sync for AudioFrontendConfig
impl Unpin for AudioFrontendConfig
impl UnsafeUnpin for AudioFrontendConfig
impl UnwindSafe for AudioFrontendConfig
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