pub enum WindowFunction {
Rectangular,
Hann,
Hamming,
Blackman,
}Expand description
Re-exports the math signal core API. Variants describing window function.
Variants§
Rectangular
The rectangular variant.
Hann
The hann variant.
Hamming
The hamming variant.
Blackman
The blackman variant.
Implementations§
Trait Implementations§
Source§impl Clone for WindowFunction
impl Clone for WindowFunction
Source§fn clone(&self) -> WindowFunction
fn clone(&self) -> WindowFunction
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 WindowFunction
Source§impl Debug for WindowFunction
impl Debug for WindowFunction
impl Eq for WindowFunction
Source§impl PartialEq for WindowFunction
impl PartialEq for WindowFunction
Source§fn eq(&self, other: &WindowFunction) -> bool
fn eq(&self, other: &WindowFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WindowFunction
Auto Trait Implementations§
impl Freeze for WindowFunction
impl RefUnwindSafe for WindowFunction
impl Send for WindowFunction
impl Sync for WindowFunction
impl Unpin for WindowFunction
impl UnsafeUnpin for WindowFunction
impl UnwindSafe for WindowFunction
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