Trait basic_dsp_vector::MetaData [] [src]

pub trait MetaData {
    fn domain(&self) -> DataDomain;
    fn is_complex(&self) -> bool;
}

A trait which provides information about number space and domain.

Required Methods

The domain in which the data vector resides. Basically specifies the x-axis and the type of operations which are valid on this vector.

The domain can be changed using the RededicateOps trait.

Indicates whether the vector contains complex data. This also specifies the type of operations which are valid on this vector.

The number space can be changed using the RededicateOps trait.

Implementors