Skip to main content

Refl

Trait Refl 

Source
pub trait Refl<A> {
    type Output;

    // Required method
    fn refl(self, axis: A) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn refl(self, axis: A) -> Self::Output

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<S: Field, const N: usize> Refl<Nrml<N, S>> for Vect<N, S>

Source§

type Output = Vect<N, S>

Source§

impl<S: Field, const N: usize> Refl<Option<Nrml<N, S>>> for Vect<N, S>

Source§

type Output = Vect<N, S>

Source§

impl<S: Field, const N: usize> Refl<Vect<N, S>> for Vect<N, S>

Source§

type Output = Vect<N, S>