pub unsafe trait Conjugate:
Send
+ Sync
+ Debug
+ Imply<Self::Canonical, Is: RefOps> {
type Conj: Conjugate<Conj = Self, Canonical = Self::Canonical>;
type Canonical: Conjugate<Canonical = Self::Canonical> + ComplexField;
const IS_CANONICAL: bool;
}Required Associated Constants§
const IS_CANONICAL: bool
Required Associated Types§
type Conj: Conjugate<Conj = Self, Canonical = Self::Canonical>
type Canonical: Conjugate<Canonical = Self::Canonical> + ComplexField
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.