Skip to main content

ConjElem

Trait ConjElem 

Source
pub trait ConjElem {
    // Required method
    fn conj_elem(self) -> Self;
}
Expand description

Element-wise conjugation helper.

Required Methods§

Source

fn conj_elem(self) -> Self

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 ConjElem for f32

Source§

fn conj_elem(self) -> Self

Source§

impl ConjElem for f64

Source§

fn conj_elem(self) -> Self

Source§

impl ConjElem for Complex<f32>

Source§

fn conj_elem(self) -> Self

Source§

impl ConjElem for Complex<f64>

Source§

fn conj_elem(self) -> Self

Implementors§