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<T: Hash> Hash for Matrix<T>[src]

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]; 2]>[src]

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

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

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

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

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

impl ToPrimType for Matrix<[[f32; 3]; 4]>[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.