Struct shades::Matrix[][src]

pub struct Matrix<T>(_);

Matrix wrapper.

This type represents a matrix of a given dimension, deduced from the wrapped type.

Trait Implementations

impl<T: Clone> Clone for Matrix<T>[src]

impl<T: Debug> Debug for Matrix<T>[src]

impl<T: Eq> Eq for Matrix<T>[src]

impl<T, const M: usize, const N: usize> From<[[T; N]; M]> for Matrix<[[T; N]; M]>[src]

impl From<Matrix<[[f32; 2]; 2]>> for Expr<Matrix<[[f32; 2]; 2]>>[src]

impl From<Matrix<[[f32; 3]; 3]>> for Expr<Matrix<[[f32; 3]; 3]>>[src]

impl From<Matrix<[[f32; 4]; 4]>> for Expr<Matrix<[[f32; 4]; 4]>>[src]

impl<T: Hash> Hash for Matrix<T>[src]

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for Expr<M22>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for Var<M22>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for &'a Expr<M22>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for &'a Var<M22>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for Expr<V2<f32>>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for Var<V2<f32>>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for &'a Expr<V2<f32>>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 2]; 2]>> for &'a Var<V2<f32>>[src]

type Output = Expr<M22>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for Expr<M33>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for Var<M33>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for &'a Expr<M33>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for &'a Var<M33>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for Expr<V3<f32>>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for Var<V3<f32>>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for &'a Expr<V3<f32>>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 3]; 3]>> for &'a Var<V3<f32>>[src]

type Output = Expr<M33>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for Expr<M44>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for Var<M44>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for &'a Expr<M44>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for &'a Var<M44>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for Expr<V4<f32>>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for Var<V4<f32>>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for &'a Expr<V4<f32>>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<'a> Mul<Matrix<[[f32; 4]; 4]>> for &'a Var<V4<f32>>[src]

type Output = Expr<M44>

The resulting type after applying the * operator.

impl<T: PartialEq> PartialEq<Matrix<T>> for Matrix<T>[src]

impl<T> StructuralEq for Matrix<T>[src]

impl<T> StructuralPartialEq for Matrix<T>[src]

impl ToPrimType for Matrix<[[f32; 2]; 2]>[src]

impl ToPrimType for Matrix<[[f32; 3]; 3]>[src]

impl ToPrimType for Matrix<[[f32; 4]; 4]>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Matrix<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Matrix<T> where
    T: Send
[src]

impl<T> Sync for Matrix<T> where
    T: Sync
[src]

impl<T> Unpin for Matrix<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Matrix<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToType for T where
    T: ToPrimType
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.