[][src]Struct glsl_layout::ivec2

pub struct ivec2(_);

Vector of 2 int values. foo: ivec2 is equivalent to glsl's ivec2 foo;

Examples

let x: ivec2 = [1i32; 2].into();

Trait Implementations

impl AsMut<[i32; 2]> for ivec2[src]

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

impl AsRef<[i32; 2]> for ivec2[src]

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

impl Clone for ivec2[src]

impl Copy for ivec2[src]

impl Debug for ivec2[src]

impl Default for ivec2[src]

impl Eq for ivec2[src]

impl<T> From<[T; 2]> for ivec2 where
    T: Into<int>, 
[src]

impl Hash for ivec2[src]

impl Ord for ivec2[src]

impl PartialEq<ivec2> for ivec2[src]

impl PartialOrd<ivec2> for ivec2[src]

impl Std140 for ivec2[src]

impl StructuralEq for ivec2[src]

impl StructuralPartialEq for ivec2[src]

impl Uniform for ivec2[src]

type Align = Align8

ZST that enforces alignment required for this type.

type Std140 = ivec2

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.