pub type IQ<T> = Complex<T>;
#[repr(C)]pub struct IQ<T> { pub re: T, pub im: T, }
re: T
Real portion of the complex number
im: T
Imaginary portion of the complex number