pub trait Mag<T>where Self: MixedComplex,{ // Required methods fn mag(&self) -> T; fn abs(&self) -> T; }
Magnitude of the complex number.