pub struct uvec4(/* private fields */);
Expand description
Vector of 4 uint
values.
foo: uvec4
is equivalent to glsl’s uvec4 foo;
§Examples
let x: uvec4 = [1u32; 4].into();
Trait Implementations§
Source§impl Ord for uvec4
impl Ord for uvec4
Source§impl PartialOrd for uvec4
impl PartialOrd for uvec4
impl Copy for uvec4
impl Eq for uvec4
impl StructuralPartialEq for uvec4
Auto Trait Implementations§
impl Freeze for uvec4
impl RefUnwindSafe for uvec4
impl Send for uvec4
impl Sync for uvec4
impl Unpin for uvec4
impl UnwindSafe for uvec4
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more