Trait rustfft::FftNum

source ·
pub trait FftNum: Copy + FromPrimitive + Signed + Sync + Send + Debug + 'static { }
Expand description

Generic floating point number, implemented for f32 and f64

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> FftNum for T
where T: Copy + FromPrimitive + Signed + Sync + Send + Debug + 'static,