Trait signal_processing::ComplexOp

source ·
pub trait ComplexOp<Rhs>: ComplexFloat + Into<Self::Output>
where Rhs: ComplexFloat + Into<Self::Output>,
{ type Output: ComplexFloat; }

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> ComplexOp<T> for Complex<T>
where T: Float + FloatConst,

§

type Output = Complex<T>

Implementors§

source§

impl<T> ComplexOp<Complex<T>> for T
where T: Float + FloatConst,

§

type Output = Complex<T>

source§

impl<T> ComplexOp<T> for T
where T: ComplexFloat,

§

type Output = T