Trait Hpr2

Source
pub trait Hpr2: Sized {
    // Required method
    fn hpr2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
        symmetry: Symmetry,
        alpha: &Self,
        x: &V,
        y: &W,
        a: &mut dyn Matrix<Self>,
    );
}

Required Methods§

Source

fn hpr2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Self, x: &V, y: &W, a: &mut dyn Matrix<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 Hpr2 for Complex32

Source§

fn hpr2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Complex32, x: &V, y: &W, a: &mut dyn Matrix<Complex32>, )

Source§

impl Hpr2 for Complex64

Source§

fn hpr2<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>( symmetry: Symmetry, alpha: &Complex64, x: &V, y: &W, a: &mut dyn Matrix<Complex64>, )

Implementors§