[][src]Trait basic_dsp_vector::ToRealResult

pub trait ToRealResult {
    type RealResult;
}

Specifies what the the result is if a type is transformed to real numbers.

Associated Types

Loading content...

Implementors

impl<S, T> ToRealResult for ComplexFreqVec<S, T> where
    S: ToSlice<T>,
    T: RealNumber
[src]

type RealResult = RealFreqVec<S, T>

impl<S, T> ToRealResult for ComplexTimeVec<S, T> where
    S: ToSlice<T>,
    T: RealNumber
[src]

type RealResult = RealTimeVec<S, T>

impl<S, T> ToRealResult for GenDspVec<S, T> where
    S: ToSlice<T>,
    T: RealNumber
[src]

type RealResult = GenDspVec<S, T>

Loading content...