Enum stft::WindowType [] [src]

pub enum WindowType {
    Hanning,
    Hamming,
    Blackman,
    Nuttall,
    None,
}

the type of apodization window to use

Variants

Hanning
Hamming
Blackman
Nuttall
None

Methods

impl WindowType

fn values() -> [WindowType; 5]

Trait Implementations

impl FromStr for WindowType

type Err = &'static str

fn from_str(s: &str) -> Result<Self, Self::Err>

impl Display for WindowType

fn fmt(&self, formatter: &mut Formatter) -> Result

Derived Implementations

impl Hash for WindowType

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Debug for WindowType

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Ord for WindowType

fn cmp(&self, __arg_0: &WindowType) -> Ordering

impl Eq for WindowType

impl PartialOrd for WindowType

fn partial_cmp(&self, __arg_0: &WindowType) -> Option<Ordering>

fn lt(&self, __arg_0: &WindowType) -> bool

fn le(&self, __arg_0: &WindowType) -> bool

fn gt(&self, __arg_0: &WindowType) -> bool

fn ge(&self, __arg_0: &WindowType) -> bool

impl PartialEq for WindowType

fn eq(&self, __arg_0: &WindowType) -> bool

fn ne(&self, __arg_0: &WindowType) -> bool

impl Copy for WindowType

impl Clone for WindowType

fn clone(&self) -> WindowType

fn clone_from(&mut self, source: &Self)