Trait matrixable::req::TransformStrategy

source ·
pub trait TransformStrategy<M: MatrixExt> {
    type Output;

    // Required method
    fn out_of(&self, m: M) -> Self::Output;
}
Expand description

A strategy trait for matrix transformation.

Required Associated Types§

Required Methods§

source

fn out_of(&self, m: M) -> Self::Output

Implementations on Foreign Types§

source§

impl<M, S> TransformStrategy<M> for &S
where M: MatrixExt, S: TransformStrategy<M>,

§

type Output = <S as TransformStrategy<M>>::Output

source§

fn out_of(&self, m: M) -> Self::Output

Implementors§