Trait basic_dsp::ToTimeResult

source ·
pub trait ToTimeResult {
    type TimeResult;
}
Expand description

Specifies what the the result is if a type is transformed to time domain.

Required Associated Types§

source

type TimeResult

Specifies what the the result is if a type is transformed to time domain.

Implementors§

source§

impl<S, T> ToTimeResult for DspVec<S, T, Complex, Freq>
where S: ToSlice<T>, T: RealNumber,

source§

impl<S, T> ToTimeResult for DspVec<S, T, RealOrComplex, TimeOrFreq>
where S: ToSlice<T>, T: RealNumber,

source§

impl<V, S, T> ToTimeResult for Matrix2xN<V, S, T>
where V: Vector<T> + ToTimeResult, S: ToSlice<T>, T: RealNumber, <V as ToTimeResult>::TimeResult: Vector<T>,

source§

impl<V, S, T> ToTimeResult for Matrix3xN<V, S, T>
where V: Vector<T> + ToTimeResult, S: ToSlice<T>, T: RealNumber, <V as ToTimeResult>::TimeResult: Vector<T>,

source§

impl<V, S, T> ToTimeResult for Matrix4xN<V, S, T>
where V: Vector<T> + ToTimeResult, S: ToSlice<T>, T: RealNumber, <V as ToTimeResult>::TimeResult: Vector<T>,

source§

impl<V, S, T> ToTimeResult for MatrixMxN<V, S, T>
where V: Vector<T> + ToTimeResult, S: ToSlice<T>, T: RealNumber, <V as ToTimeResult>::TimeResult: Vector<T>,