pub struct uvec3(/* private fields */);
Expand description
Vector of 3 uint
values.
foo: uvec3
is equivalent to glsl’s uvec3 foo;
§Examples
let x: uvec3 = [1u32; 3].into();
Trait Implementations§
Source§impl Ord for uvec3
impl Ord for uvec3
Source§impl PartialOrd for uvec3
impl PartialOrd for uvec3
impl Copy for uvec3
impl Eq for uvec3
impl StructuralPartialEq for uvec3
Auto Trait Implementations§
impl Freeze for uvec3
impl RefUnwindSafe for uvec3
impl Send for uvec3
impl Sync for uvec3
impl Unpin for uvec3
impl UnwindSafe for uvec3
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