[][src]Struct crevice::std140::Mat4

pub struct Mat4 {
    pub x: Vec4,
    pub y: Vec4,
    pub z: Vec4,
    pub w: Vec4,
}

Corresponds to GLSL's mat4.

Fields

x: Vec4y: Vec4z: Vec4w: Vec4

Trait Implementations

impl Clone for Mat4[src]

impl Copy for Mat4[src]

impl Debug for Mat4[src]

impl Pod for Mat4[src]

impl Std140 for Mat4[src]

impl Zeroable for Mat4[src]

Auto Trait Implementations

impl RefUnwindSafe for Mat4

impl Send for Mat4

impl Sync for Mat4

impl Unpin for Mat4

impl UnwindSafe for Mat4

Blanket Implementations

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

impl<T> AsStd140 for T where
    T: Std140
[src]

type Std140Type = T

The std140 version of this value.

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.