Skip to main content

ProjRej

Trait ProjRej 

Source
pub trait ProjRej<A>: Sized {
    type Output;

    // Required methods
    fn proj(self, axis: A) -> Self::Output;
    fn rej(self, axis: A) -> Self::Output;
    fn proj_rej(self, axis: A) -> (Self::Output, Self::Output);
}

Required Associated Types§

Required Methods§

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§

Source§

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

Source§

type Output = Vect<N, S>

Source§

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

Source§

type Output = Vect<N, S>

Source§

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

Source§

type Output = Vect<N, S>

Source§

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

Source§

type Output = Vect<N, S>

Source§

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

Source§

type Output = Vect<N, S>