[−][src]Struct glsl_layout::uvec2
Vector of 2 uint values.
foo: uvec2 is equivalent to glsl's uvec2 foo;
Examples
let x: uvec2 = [1u32; 2].into();
Trait Implementations
impl AsMut<[u32; 2]> for uvec2[src]
impl AsMut<[u32]> for uvec2[src]
impl AsRef<[u32; 2]> for uvec2[src]
impl AsRef<[u32]> for uvec2[src]
impl Clone for uvec2[src]
impl Copy for uvec2[src]
impl Debug for uvec2[src]
impl Default for uvec2[src]
impl Eq for uvec2[src]
impl<T> From<[T; 2]> for uvec2 where
T: Into<uint>, [src]
T: Into<uint>,
impl Hash for uvec2[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for uvec2[src]
pub fn cmp(&self, other: &uvec2) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<uvec2> for uvec2[src]
impl PartialOrd<uvec2> for uvec2[src]
pub fn partial_cmp(&self, other: &uvec2) -> Option<Ordering>[src]
pub fn lt(&self, other: &uvec2) -> bool[src]
pub fn le(&self, other: &uvec2) -> bool[src]
pub fn gt(&self, other: &uvec2) -> bool[src]
pub fn ge(&self, other: &uvec2) -> bool[src]
impl Std140 for uvec2[src]
impl StructuralEq for uvec2[src]
impl StructuralPartialEq for uvec2[src]
impl Uniform for uvec2[src]
Auto Trait Implementations
impl RefUnwindSafe for uvec2[src]
impl Send for uvec2[src]
impl Sync for uvec2[src]
impl Unpin for uvec2[src]
impl UnwindSafe for uvec2[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,