[][src]Struct glsl_linalg::matrix::M3

pub struct M3<T>(pub [[T; 3]; 3]);

Trait Implementations

impl<F> Converter<M3<F>, M3<F>> for EmptyConverter where
    F: Numeric
[src]

impl<T> Finalizer<M3<T>> for M3<T>[src]

impl<T> Finalizer<M3<T>> for V1<T> where
    T: Numeric
[src]

impl<T> Matrix for M3<T> where
    T: Numeric
[src]

impl<F> FloatMatrix<F> for M3<F> where
    F: Float
[src]

fn inverse(&self) -> Self[src]

impl<T> IntoVectors<(V3<T>, V3<T>, V3<T>)> for M3<T> where
    T: Numeric
[src]

impl<T> FromVectors<(V3<T>, V3<T>, V3<T>)> for M3<T> where
    T: Numeric
[src]

impl<T: Copy> Copy for M3<T>[src]

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

impl<T: Default> Default for M3<T>[src]

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> DerefMut for M3<T> where
    T: Numeric
[src]

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

impl<T> Sub<M3<T>> for M3<T> where
    T: Numeric
[src]

type Output = M3<T>

The resulting type after applying the - operator.

impl<T> Add<M3<T>> for M3<T> where
    T: Numeric
[src]

type Output = M3<T>

The resulting type after applying the + operator.

impl<T> Mul<M3<T>> for M3<T> where
    T: Numeric
[src]

type Output = M3<T>

The resulting type after applying the * operator.

impl<T> Mul<V3<T>> for M3<T> where
    T: Numeric
[src]

type Output = V3<T>

The resulting type after applying the * operator.

impl Mul<M3<i8>> for i8[src]

type Output = M3<i8>

The resulting type after applying the * operator.

impl Mul<M3<i16>> for i16[src]

type Output = M3<i16>

The resulting type after applying the * operator.

impl Mul<M3<i32>> for i32[src]

type Output = M3<i32>

The resulting type after applying the * operator.

impl Mul<M3<i64>> for i64[src]

type Output = M3<i64>

The resulting type after applying the * operator.

impl Mul<M3<f32>> for f32[src]

type Output = M3<f32>

The resulting type after applying the * operator.

impl Mul<M3<f64>> for f64[src]

type Output = M3<f64>

The resulting type after applying the * operator.

impl<T> Mul<M3<T>> for V3<T> where
    T: Numeric
[src]

type Output = V3<T>

The resulting type after applying the * operator.

impl<T> Div<T> for M3<T> where
    T: Numeric
[src]

type Output = M3<T>

The resulting type after applying the / operator.

impl<T> Deref for M3<T> where
    T: Numeric
[src]

type Target = [[T; 3]; 3]

The resulting type after dereferencing.

Auto Trait Implementations

impl<T> Send for M3<T> where
    T: Send

impl<T> Sync for M3<T> where
    T: Sync

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.