Skip to main content

Conjugate

Trait Conjugate 

Source
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§

Required Associated Types§

Source

type Conj: Conjugate<Conj = Self, Canonical = Self::Canonical>

Source

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.

Implementations on Foreign Types§

Source§

impl<T: RealField> Conjugate for Complex<T>

Implementors§