pub struct StftConfig {
pub fft_size: usize,
pub hop_size: usize,
pub window: WindowFunction,
}Expand description
Configuration for the STFT.
Fields§
§fft_size: usize§hop_size: usize§window: WindowFunctionTrait Implementations§
Source§impl Clone for StftConfig
impl Clone for StftConfig
Source§fn clone(&self) -> StftConfig
fn clone(&self) -> StftConfig
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 StftConfig
impl Debug for StftConfig
Auto Trait Implementations§
impl Freeze for StftConfig
impl RefUnwindSafe for StftConfig
impl Send for StftConfig
impl Sync for StftConfig
impl Unpin for StftConfig
impl UnsafeUnpin for StftConfig
impl UnwindSafe for StftConfig
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