[][src]Struct ezcgmath::matrix::Matrix1x3

#[repr(C)]pub struct Matrix1x3 {
    pub c00: Scalar,
    pub c01: Scalar,
    pub c02: Scalar,
}

A 1 x 3 Matrix.

Fields

c00: Scalarc01: Scalarc02: Scalar

Trait Implementations

impl AbsDiffEq<Matrix1x3> for Matrix1x3[src]

type Epsilon = Scalar

Used for specifying relative comparisons.

impl Add<Matrix1x3> for Matrix1x3[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<Matrix1x3> for Matrix1x3[src]

impl Clone for Matrix1x3[src]

impl Copy for Matrix1x3[src]

impl Debug for Matrix1x3[src]

impl Default for Matrix1x3[src]

impl Mul<Matrix1x3> for Matrix3x3[src]

type Output = Matrix1x3

The resulting type after applying the * operator.

impl Mul<f32> for Matrix1x3[src]

type Output = Self

The resulting type after applying the * operator.

impl MulAssign<f32> for Matrix1x3[src]

impl PartialEq<Matrix1x3> for Matrix1x3[src]

impl RelativeEq<Matrix1x3> for Matrix1x3[src]

impl StructuralPartialEq for Matrix1x3[src]

impl Sub<Matrix1x3> for Matrix1x3[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<Matrix1x3> for Matrix1x3[src]

impl UlpsEq<Matrix1x3> for Matrix1x3[src]

Auto Trait Implementations

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, 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.