Skip to main content

Domain

Trait 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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§