Trait basic_dsp::Domain

source ·
pub trait Domain: Debug + PartialEq + Clone {
    // Required methods
    fn domain(&self) -> DataDomain;
    fn to_freq(&mut self);
    fn to_time(&mut self);
}
Expand description

Domain (time or frequency) information.

Required Methods§

source

fn domain(&self) -> DataDomain

source

fn to_freq(&mut self)

See to_complex for some details.

source

fn to_time(&mut self)

See to_complex for some details.

Object Safety§

This trait is not object safe.

Implementors§