pub trait Complex: Signed {
type RealScalar: Copy;
// Required methods
fn conj(self) -> Self;
fn mul_i(self) -> Self;
fn mul_neg_i(self) -> Self;
}Expand description
Complex valued vectors.
Required Associated Types§
Sourcetype RealScalar: Copy
type RealScalar: Copy
The real scalar type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".