[][src]Struct glsl_layout::ivec4

pub struct ivec4(_);

Vector of 4 int values. foo: ivec4 is equivalent to glsl's ivec4 foo;

Examples

let x: ivec4 = [1i32; 4].into();

Trait Implementations

impl AsMut<[i32; 4]> for ivec4[src]

impl AsMut<[i32]> for ivec4[src]

impl AsRef<[i32; 4]> for ivec4[src]

impl AsRef<[i32]> for ivec4[src]

impl Clone for ivec4[src]

impl Copy for ivec4[src]

impl Debug for ivec4[src]

impl Default for ivec4[src]

impl Eq for ivec4[src]

impl<T> From<[T; 4]> for ivec4 where
    T: Into<int>, 
[src]

impl Hash for ivec4[src]

impl Ord for ivec4[src]

impl PartialEq<ivec4> for ivec4[src]

impl PartialOrd<ivec4> for ivec4[src]

impl Std140 for ivec4[src]

impl StructuralEq for ivec4[src]

impl StructuralPartialEq for ivec4[src]

impl Uniform for ivec4[src]

type Align = Align16

ZST that enforces alignment required for this type.

type Std140 = ivec4

Type that contain same data with memory layout matching glsl's layout(std140).

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.