[][src]Struct shader_types::UVec2

#[repr(C, align(8))]pub struct UVec2 {
    pub inner: [u32; 2],
}

Vector of 2 u32 values. Has size 8 and alignment 8.

Fields

inner: [u32; 2]

Implementations

impl UVec2[src]

pub fn new(inner: [u32; 2]) -> Self[src]

pub fn from_mint<T: Into<Vector2<u32>>>(value: T) -> Self[src]

This is supported on crate feature mint only.

Construct a UVec2 from any type which is convertable into a mint::Vector2<u32>.

Trait Implementations

impl Clone for UVec2[src]

impl Copy for UVec2[src]

impl Debug for UVec2[src]

impl Default for UVec2[src]

impl From<[u32; 2]> for UVec2[src]

impl From<UVec2> for Vector2<u32>[src]

impl From<UVec2> for [u32; 2][src]

impl From<Vector2<u32>> for UVec2[src]

impl PartialEq<UVec2> for UVec2[src]

impl PartialOrd<UVec2> for UVec2[src]

impl Pod for UVec2[src]

impl StructuralPartialEq for UVec2[src]

impl Zeroable for UVec2[src]

Auto Trait Implementations

impl RefUnwindSafe for UVec2

impl Send for UVec2

impl Sync for UVec2

impl Unpin for UVec2

impl UnwindSafe for UVec2

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.