[][src]Trait basic_dsp::numbers::DspNumber

pub trait DspNumber: 'static + ToSimd + Send + Copy + Sync + Clone + Debug + FromPrimitive + Signed + Num + FFTnum { }

A trait for a numeric value which at least supports a subset of the operations defined in this crate. Can be an integer or a floating point number. In order to have support for all operations in this crate a must implement the RealNumber.

Implementors

impl<T> DspNumber for T where
    T: Num + Copy + Clone + Send + Sync + ToSimd + Debug + Signed + FromPrimitive + FFTnum + 'static, 
[src]

Loading content...