Struct bevy_math::UVec4

source ·
pub struct UVec4 {
    pub x: u32,
    pub y: u32,
    pub z: u32,
    pub w: u32,
}
Expand description

A 4-dimensional vector.

Fields§

§x: u32§y: u32§z: u32§w: u32

Implementations§

source§

impl UVec4

source

pub const ZERO: UVec4 = Self::splat(0)

All zeroes.

source

pub const ONE: UVec4 = Self::splat(1)

All ones.

source

pub const X: UVec4 = Self::new(1, 0, 0, 0)

A unit-length vector pointing along the positive X axis.

source

pub const Y: UVec4 = Self::new(0, 1, 0, 0)

A unit-length vector pointing along the positive Y axis.

source

pub const Z: UVec4 = Self::new(0, 0, 1, 0)

A unit-length vector pointing along the positive Z axis.

source

pub const W: UVec4 = Self::new(0, 0, 0, 1)

A unit-length vector pointing along the positive W axis.

source

pub const AXES: [UVec4; 4] = [Self::X, Self::Y, Self::Z, Self::W]

The unit axes.

source

pub const fn new(x: u32, y: u32, z: u32, w: u32) -> UVec4

Creates a new vector.

source

pub const fn splat(v: u32) -> UVec4

Creates a vector with all elements set to v.

source

pub fn select(mask: BVec4, if_true: UVec4, if_false: UVec4) -> UVec4

Creates a vector from the elements in if_true and if_false, selecting which to use for each element of self.

A true element in the mask uses the corresponding element from if_true, and false uses the element from if_false.

source

pub const fn from_array(a: [u32; 4]) -> UVec4

Creates a new vector from an array.

source

pub const fn to_array(&self) -> [u32; 4]

[x, y, z, w]

source

pub const fn from_slice(slice: &[u32]) -> UVec4

Creates a vector from the first 4 values in slice.

Panics

Panics if slice is less than 4 elements long.

source

pub fn write_to_slice(self, slice: &mut [u32])

Writes the elements of self to the first 4 elements in slice.

Panics

Panics if slice is less than 4 elements long.

source

pub fn truncate(self) -> UVec3

Creates a 2D vector from the x, y and z elements of self, discarding w.

Truncation to UVec3 may also be performed by using self.xyz() or UVec3::from().

source

pub fn dot(self, rhs: UVec4) -> u32

Computes the dot product of self and rhs.

source

pub fn dot_into_vec(self, rhs: UVec4) -> UVec4

Returns a vector where every component is the dot product of self and rhs.

source

pub fn min(self, rhs: UVec4) -> UVec4

Returns a vector containing the minimum values for each element of self and rhs.

In other words this computes [self.x.min(rhs.x), self.y.min(rhs.y), ..].

source

pub fn max(self, rhs: UVec4) -> UVec4

Returns a vector containing the maximum values for each element of self and rhs.

In other words this computes [self.x.max(rhs.x), self.y.max(rhs.y), ..].

source

pub fn clamp(self, min: UVec4, max: UVec4) -> UVec4

Component-wise clamping of values, similar to u32::clamp.

Each element in min must be less-or-equal to the corresponding element in max.

Panics

Will panic if min is greater than max when glam_assert is enabled.

source

pub fn min_element(self) -> u32

Returns the horizontal minimum of self.

In other words this computes min(x, y, ..).

source

pub fn max_element(self) -> u32

Returns the horizontal maximum of self.

In other words this computes max(x, y, ..).

source

pub fn cmpeq(self, rhs: UVec4) -> BVec4

Returns a vector mask containing the result of a == comparison for each element of self and rhs.

In other words, this computes [self.x == rhs.x, self.y == rhs.y, ..] for all elements.

source

pub fn cmpne(self, rhs: UVec4) -> BVec4

Returns a vector mask containing the result of a != comparison for each element of self and rhs.

In other words this computes [self.x != rhs.x, self.y != rhs.y, ..] for all elements.

source

pub fn cmpge(self, rhs: UVec4) -> BVec4

Returns a vector mask containing the result of a >= comparison for each element of self and rhs.

In other words this computes [self.x >= rhs.x, self.y >= rhs.y, ..] for all elements.

source

pub fn cmpgt(self, rhs: UVec4) -> BVec4

Returns a vector mask containing the result of a > comparison for each element of self and rhs.

In other words this computes [self.x > rhs.x, self.y > rhs.y, ..] for all elements.

source

pub fn cmple(self, rhs: UVec4) -> BVec4

Returns a vector mask containing the result of a <= comparison for each element of self and rhs.

In other words this computes [self.x <= rhs.x, self.y <= rhs.y, ..] for all elements.

source

pub fn cmplt(self, rhs: UVec4) -> BVec4

Returns a vector mask containing the result of a < comparison for each element of self and rhs.

In other words this computes [self.x < rhs.x, self.y < rhs.y, ..] for all elements.

source

pub fn as_vec4(&self) -> Vec4

Casts all elements of self to f32.

source

pub fn as_dvec4(&self) -> DVec4

Casts all elements of self to f64.

source

pub fn as_ivec4(&self) -> IVec4

Casts all elements of self to i32.

Trait Implementations§

source§

impl Add<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the + operator.
source§

fn add(self, rhs: UVec4) -> UVec4

Performs the + operation. Read more
source§

impl Add<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the + operator.
source§

fn add(self, rhs: u32) -> UVec4

Performs the + operation. Read more
source§

impl AddAssign<UVec4> for UVec4

source§

fn add_assign(&mut self, rhs: UVec4)

Performs the += operation. Read more
source§

impl AddAssign<u32> for UVec4

source§

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
source§

impl AsMut<[u32; 4]> for UVec4

source§

fn as_mut(&mut self) -> &mut [u32; 4]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<[u32; 4]> for UVec4

source§

fn as_ref(&self) -> &[u32; 4]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl BitAnd<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: UVec4) -> <UVec4 as BitAnd<UVec4>>::Output

Performs the & operation. Read more
source§

impl BitAnd<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u32) -> <UVec4 as BitAnd<u32>>::Output

Performs the & operation. Read more
source§

impl BitOr<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: UVec4) -> <UVec4 as BitOr<UVec4>>::Output

Performs the | operation. Read more
source§

impl BitOr<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u32) -> <UVec4 as BitOr<u32>>::Output

Performs the | operation. Read more
source§

impl BitXor<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: UVec4) -> <UVec4 as BitXor<UVec4>>::Output

Performs the ^ operation. Read more
source§

impl BitXor<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: u32) -> <UVec4 as BitXor<u32>>::Output

Performs the ^ operation. Read more
source§

impl Clone for UVec4

source§

fn clone(&self) -> UVec4

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UVec4

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for UVec4

source§

fn default() -> UVec4

Returns the “default value” for a type. Read more
source§

impl Display for UVec4

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Div<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the / operator.
source§

fn div(self, rhs: UVec4) -> UVec4

Performs the / operation. Read more
source§

impl Div<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the / operator.
source§

fn div(self, rhs: u32) -> UVec4

Performs the / operation. Read more
source§

impl DivAssign<UVec4> for UVec4

source§

fn div_assign(&mut self, rhs: UVec4)

Performs the /= operation. Read more
source§

impl DivAssign<u32> for UVec4

source§

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
source§

impl From<[u32; 4]> for UVec4

source§

fn from(a: [u32; 4]) -> UVec4

Converts to this type from the input type.
source§

impl From<(UVec2, UVec2)> for UVec4

source§

fn from(_: (UVec2, UVec2)) -> UVec4

Converts to this type from the input type.
source§

impl From<(UVec2, u32, u32)> for UVec4

source§

fn from(_: (UVec2, u32, u32)) -> UVec4

Converts to this type from the input type.
source§

impl From<(UVec3, u32)> for UVec4

source§

fn from(_: (UVec3, u32)) -> UVec4

Converts to this type from the input type.
source§

impl From<(u32, UVec3)> for UVec4

source§

fn from(_: (u32, UVec3)) -> UVec4

Converts to this type from the input type.
source§

impl From<(u32, u32, u32, u32)> for UVec4

source§

fn from(t: (u32, u32, u32, u32)) -> UVec4

Converts to this type from the input type.
source§

impl Hash for UVec4

source§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Index<usize> for UVec4

§

type Output = u32

The returned type after indexing.
source§

fn index(&self, index: usize) -> &<UVec4 as Index<usize>>::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for UVec4

source§

fn index_mut(&mut self, index: usize) -> &mut <UVec4 as Index<usize>>::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Mul<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: UVec4) -> UVec4

Performs the * operation. Read more
source§

impl Mul<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u32) -> UVec4

Performs the * operation. Read more
source§

impl MulAssign<UVec4> for UVec4

source§

fn mul_assign(&mut self, rhs: UVec4)

Performs the *= operation. Read more
source§

impl MulAssign<u32> for UVec4

source§

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
source§

impl Not for UVec4

§

type Output = UVec4

The resulting type after applying the ! operator.
source§

fn not(self) -> <UVec4 as Not>::Output

Performs the unary ! operation. Read more
source§

impl PartialEq<UVec4> for UVec4

source§

fn eq(&self, other: &UVec4) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Product<&'a UVec4> for UVec4

source§

fn product<I>(iter: I) -> UVec4where I: Iterator<Item = &'a UVec4>,

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Product<UVec4> for UVec4

source§

fn product<I>(iter: I) -> UVec4where I: Iterator<Item = UVec4>,

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Rem<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the % operator.
source§

fn rem(self, rhs: UVec4) -> UVec4

Performs the % operation. Read more
source§

impl Rem<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u32) -> UVec4

Performs the % operation. Read more
source§

impl RemAssign<UVec4> for UVec4

source§

fn rem_assign(&mut self, rhs: UVec4)

Performs the %= operation. Read more
source§

impl RemAssign<u32> for UVec4

source§

fn rem_assign(&mut self, rhs: u32)

Performs the %= operation. Read more
source§

impl Shl<IVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: IVec4) -> <UVec4 as Shl<IVec4>>::Output

Performs the << operation. Read more
source§

impl Shl<UVec4> for IVec4

§

type Output = IVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: UVec4) -> <IVec4 as Shl<UVec4>>::Output

Performs the << operation. Read more
source§

impl Shl<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: UVec4) -> <UVec4 as Shl<UVec4>>::Output

Performs the << operation. Read more
source§

impl Shl<i16> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: i16) -> <UVec4 as Shl<i16>>::Output

Performs the << operation. Read more
source§

impl Shl<i32> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: i32) -> <UVec4 as Shl<i32>>::Output

Performs the << operation. Read more
source§

impl Shl<i8> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: i8) -> <UVec4 as Shl<i8>>::Output

Performs the << operation. Read more
source§

impl Shl<u16> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: u16) -> <UVec4 as Shl<u16>>::Output

Performs the << operation. Read more
source§

impl Shl<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: u32) -> <UVec4 as Shl<u32>>::Output

Performs the << operation. Read more
source§

impl Shl<u8> for UVec4

§

type Output = UVec4

The resulting type after applying the << operator.
source§

fn shl(self, rhs: u8) -> <UVec4 as Shl<u8>>::Output

Performs the << operation. Read more
source§

impl Shr<IVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: IVec4) -> <UVec4 as Shr<IVec4>>::Output

Performs the >> operation. Read more
source§

impl Shr<UVec4> for IVec4

§

type Output = IVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: UVec4) -> <IVec4 as Shr<UVec4>>::Output

Performs the >> operation. Read more
source§

impl Shr<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: UVec4) -> <UVec4 as Shr<UVec4>>::Output

Performs the >> operation. Read more
source§

impl Shr<i16> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: i16) -> <UVec4 as Shr<i16>>::Output

Performs the >> operation. Read more
source§

impl Shr<i32> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: i32) -> <UVec4 as Shr<i32>>::Output

Performs the >> operation. Read more
source§

impl Shr<i8> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: i8) -> <UVec4 as Shr<i8>>::Output

Performs the >> operation. Read more
source§

impl Shr<u16> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: u16) -> <UVec4 as Shr<u16>>::Output

Performs the >> operation. Read more
source§

impl Shr<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: u32) -> <UVec4 as Shr<u32>>::Output

Performs the >> operation. Read more
source§

impl Shr<u8> for UVec4

§

type Output = UVec4

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: u8) -> <UVec4 as Shr<u8>>::Output

Performs the >> operation. Read more
source§

impl Sub<UVec4> for UVec4

§

type Output = UVec4

The resulting type after applying the - operator.
source§

fn sub(self, rhs: UVec4) -> UVec4

Performs the - operation. Read more
source§

impl Sub<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u32) -> UVec4

Performs the - operation. Read more
source§

impl SubAssign<UVec4> for UVec4

source§

fn sub_assign(&mut self, rhs: UVec4)

Performs the -= operation. Read more
source§

impl SubAssign<u32> for UVec4

source§

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a UVec4> for UVec4

source§

fn sum<I>(iter: I) -> UVec4where I: Iterator<Item = &'a UVec4>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Sum<UVec4> for UVec4

source§

fn sum<I>(iter: I) -> UVec4where I: Iterator<Item = UVec4>,

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Vec4Swizzles for UVec4

§

type Vec2 = UVec2

§

type Vec3 = UVec3

source§

fn xx(self) -> UVec2

source§

fn xy(self) -> UVec2

source§

fn xz(self) -> UVec2

source§

fn xw(self) -> UVec2

source§

fn yx(self) -> UVec2

source§

fn yy(self) -> UVec2

source§

fn yz(self) -> UVec2

source§

fn yw(self) -> UVec2

source§

fn zx(self) -> UVec2

source§

fn zy(self) -> UVec2

source§

fn zz(self) -> UVec2

source§

fn zw(self) -> UVec2

source§

fn wx(self) -> UVec2

source§

fn wy(self) -> UVec2

source§

fn wz(self) -> UVec2

source§

fn ww(self) -> UVec2

source§

fn xxx(self) -> UVec3

source§

fn xxy(self) -> UVec3

source§

fn xxz(self) -> UVec3

source§

fn xxw(self) -> UVec3

source§

fn xyx(self) -> UVec3

source§

fn xyy(self) -> UVec3

source§

fn xyz(self) -> UVec3

source§

fn xyw(self) -> UVec3

source§

fn xzx(self) -> UVec3

source§

fn xzy(self) -> UVec3

source§

fn xzz(self) -> UVec3

source§

fn xzw(self) -> UVec3

source§

fn xwx(self) -> UVec3

source§

fn xwy(self) -> UVec3

source§

fn xwz(self) -> UVec3

source§

fn xww(self) -> UVec3

source§

fn yxx(self) -> UVec3

source§

fn yxy(self) -> UVec3

source§

fn yxz(self) -> UVec3

source§

fn yxw(self) -> UVec3

source§

fn yyx(self) -> UVec3

source§

fn yyy(self) -> UVec3

source§

fn yyz(self) -> UVec3

source§

fn yyw(self) -> UVec3

source§

fn yzx(self) -> UVec3

source§

fn yzy(self) -> UVec3

source§

fn yzz(self) -> UVec3

source§

fn yzw(self) -> UVec3

source§

fn ywx(self) -> UVec3

source§

fn ywy(self) -> UVec3

source§

fn ywz(self) -> UVec3

source§

fn yww(self) -> UVec3

source§

fn zxx(self) -> UVec3

source§

fn zxy(self) -> UVec3

source§

fn zxz(self) -> UVec3

source§

fn zxw(self) -> UVec3

source§

fn zyx(self) -> UVec3

source§

fn zyy(self) -> UVec3

source§

fn zyz(self) -> UVec3

source§

fn zyw(self) -> UVec3

source§

fn zzx(self) -> UVec3

source§

fn zzy(self) -> UVec3

source§

fn zzz(self) -> UVec3

source§

fn zzw(self) -> UVec3

source§

fn zwx(self) -> UVec3

source§

fn zwy(self) -> UVec3

source§

fn zwz(self) -> UVec3

source§

fn zww(self) -> UVec3

source§

fn wxx(self) -> UVec3

source§

fn wxy(self) -> UVec3

source§

fn wxz(self) -> UVec3

source§

fn wxw(self) -> UVec3

source§

fn wyx(self) -> UVec3

source§

fn wyy(self) -> UVec3

source§

fn wyz(self) -> UVec3

source§

fn wyw(self) -> UVec3

source§

fn wzx(self) -> UVec3

source§

fn wzy(self) -> UVec3

source§

fn wzz(self) -> UVec3

source§

fn wzw(self) -> UVec3

source§

fn wwx(self) -> UVec3

source§

fn wwy(self) -> UVec3

source§

fn wwz(self) -> UVec3

source§

fn www(self) -> UVec3

source§

fn xxxx(self) -> UVec4

source§

fn xxxy(self) -> UVec4

source§

fn xxxz(self) -> UVec4

source§

fn xxxw(self) -> UVec4

source§

fn xxyx(self) -> UVec4

source§

fn xxyy(self) -> UVec4

source§

fn xxyz(self) -> UVec4

source§

fn xxyw(self) -> UVec4

source§

fn xxzx(self) -> UVec4

source§

fn xxzy(self) -> UVec4

source§

fn xxzz(self) -> UVec4

source§

fn xxzw(self) -> UVec4

source§

fn xxwx(self) -> UVec4

source§

fn xxwy(self) -> UVec4

source§

fn xxwz(self) -> UVec4

source§

fn xxww(self) -> UVec4

source§

fn xyxx(self) -> UVec4

source§

fn xyxy(self) -> UVec4

source§

fn xyxz(self) -> UVec4

source§

fn xyxw(self) -> UVec4

source§

fn xyyx(self) -> UVec4

source§

fn xyyy(self) -> UVec4

source§

fn xyyz(self) -> UVec4

source§

fn xyyw(self) -> UVec4

source§

fn xyzx(self) -> UVec4

source§

fn xyzy(self) -> UVec4

source§

fn xyzz(self) -> UVec4

source§

fn xyzw(self) -> UVec4

source§

fn xywx(self) -> UVec4

source§

fn xywy(self) -> UVec4

source§

fn xywz(self) -> UVec4

source§

fn xyww(self) -> UVec4

source§

fn xzxx(self) -> UVec4

source§

fn xzxy(self) -> UVec4

source§

fn xzxz(self) -> UVec4

source§

fn xzxw(self) -> UVec4

source§

fn xzyx(self) -> UVec4

source§

fn xzyy(self) -> UVec4

source§

fn xzyz(self) -> UVec4

source§

fn xzyw(self) -> UVec4

source§

fn xzzx(self) -> UVec4

source§

fn xzzy(self) -> UVec4

source§

fn xzzz(self) -> UVec4

source§

fn xzzw(self) -> UVec4

source§

fn xzwx(self) -> UVec4

source§

fn xzwy(self) -> UVec4

source§

fn xzwz(self) -> UVec4

source§

fn xzww(self) -> UVec4

source§

fn xwxx(self) -> UVec4

source§

fn xwxy(self) -> UVec4

source§

fn xwxz(self) -> UVec4

source§

fn xwxw(self) -> UVec4

source§

fn xwyx(self) -> UVec4

source§

fn xwyy(self) -> UVec4

source§

fn xwyz(self) -> UVec4

source§

fn xwyw(self) -> UVec4

source§

fn xwzx(self) -> UVec4

source§

fn xwzy(self) -> UVec4

source§

fn xwzz(self) -> UVec4

source§

fn xwzw(self) -> UVec4

source§

fn xwwx(self) -> UVec4

source§

fn xwwy(self) -> UVec4

source§

fn xwwz(self) -> UVec4

source§

fn xwww(self) -> UVec4

source§

fn yxxx(self) -> UVec4

source§

fn yxxy(self) -> UVec4

source§

fn yxxz(self) -> UVec4

source§

fn yxxw(self) -> UVec4

source§

fn yxyx(self) -> UVec4

source§

fn yxyy(self) -> UVec4

source§

fn yxyz(self) -> UVec4

source§

fn yxyw(self) -> UVec4

source§

fn yxzx(self) -> UVec4

source§

fn yxzy(self) -> UVec4

source§

fn yxzz(self) -> UVec4

source§

fn yxzw(self) -> UVec4

source§

fn yxwx(self) -> UVec4

source§

fn yxwy(self) -> UVec4

source§

fn yxwz(self) -> UVec4

source§

fn yxww(self) -> UVec4

source§

fn yyxx(self) -> UVec4

source§

fn yyxy(self) -> UVec4

source§

fn yyxz(self) -> UVec4

source§

fn yyxw(self) -> UVec4

source§

fn yyyx(self) -> UVec4

source§

fn yyyy(self) -> UVec4

source§

fn yyyz(self) -> UVec4

source§

fn yyyw(self) -> UVec4

source§

fn yyzx(self) -> UVec4

source§

fn yyzy(self) -> UVec4

source§

fn yyzz(self) -> UVec4

source§

fn yyzw(self) -> UVec4

source§

fn yywx(self) -> UVec4

source§

fn yywy(self) -> UVec4

source§

fn yywz(self) -> UVec4

source§

fn yyww(self) -> UVec4

source§

fn yzxx(self) -> UVec4

source§

fn yzxy(self) -> UVec4

source§

fn yzxz(self) -> UVec4

source§

fn yzxw(self) -> UVec4

source§

fn yzyx(self) -> UVec4

source§

fn yzyy(self) -> UVec4

source§

fn yzyz(self) -> UVec4

source§

fn yzyw(self) -> UVec4

source§

fn yzzx(self) -> UVec4

source§

fn yzzy(self) -> UVec4

source§

fn yzzz(self) -> UVec4

source§

fn yzzw(self) -> UVec4

source§

fn yzwx(self) -> UVec4

source§

fn yzwy(self) -> UVec4

source§

fn yzwz(self) -> UVec4

source§

fn yzww(self) -> UVec4

source§

fn ywxx(self) -> UVec4

source§

fn ywxy(self) -> UVec4

source§

fn ywxz(self) -> UVec4

source§

fn ywxw(self) -> UVec4

source§

fn ywyx(self) -> UVec4

source§

fn ywyy(self) -> UVec4

source§

fn ywyz(self) -> UVec4

source§

fn ywyw(self) -> UVec4

source§

fn ywzx(self) -> UVec4

source§

fn ywzy(self) -> UVec4

source§

fn ywzz(self) -> UVec4

source§

fn ywzw(self) -> UVec4

source§

fn ywwx(self) -> UVec4

source§

fn ywwy(self) -> UVec4

source§

fn ywwz(self) -> UVec4

source§

fn ywww(self) -> UVec4

source§

fn zxxx(self) -> UVec4

source§

fn zxxy(self) -> UVec4

source§

fn zxxz(self) -> UVec4

source§

fn zxxw(self) -> UVec4

source§

fn zxyx(self) -> UVec4

source§

fn zxyy(self) -> UVec4

source§

fn zxyz(self) -> UVec4

source§

fn zxyw(self) -> UVec4

source§

fn zxzx(self) -> UVec4

source§

fn zxzy(self) -> UVec4

source§

fn zxzz(self) -> UVec4

source§

fn zxzw(self) -> UVec4

source§

fn zxwx(self) -> UVec4

source§

fn zxwy(self) -> UVec4

source§

fn zxwz(self) -> UVec4

source§

fn zxww(self) -> UVec4

source§

fn zyxx(self) -> UVec4

source§

fn zyxy(self) -> UVec4

source§

fn zyxz(self) -> UVec4

source§

fn zyxw(self) -> UVec4

source§

fn zyyx(self) -> UVec4

source§

fn zyyy(self) -> UVec4

source§

fn zyyz(self) -> UVec4

source§

fn zyyw(self) -> UVec4

source§

fn zyzx(self) -> UVec4

source§

fn zyzy(self) -> UVec4

source§

fn zyzz(self) -> UVec4

source§

fn zyzw(self) -> UVec4

source§

fn zywx(self) -> UVec4

source§

fn zywy(self) -> UVec4

source§

fn zywz(self) -> UVec4

source§

fn zyww(self) -> UVec4

source§

fn zzxx(self) -> UVec4

source§

fn zzxy(self) -> UVec4

source§

fn zzxz(self) -> UVec4

source§

fn zzxw(self) -> UVec4

source§

fn zzyx(self) -> UVec4

source§

fn zzyy(self) -> UVec4

source§

fn zzyz(self) -> UVec4

source§

fn zzyw(self) -> UVec4

source§

fn zzzx(self) -> UVec4

source§

fn zzzy(self) -> UVec4

source§

fn zzzz(self) -> UVec4

source§

fn zzzw(self) -> UVec4

source§

fn zzwx(self) -> UVec4

source§

fn zzwy(self) -> UVec4

source§

fn zzwz(self) -> UVec4

source§

fn zzww(self) -> UVec4

source§

fn zwxx(self) -> UVec4

source§

fn zwxy(self) -> UVec4

source§

fn zwxz(self) -> UVec4

source§

fn zwxw(self) -> UVec4

source§

fn zwyx(self) -> UVec4

source§

fn zwyy(self) -> UVec4

source§

fn zwyz(self) -> UVec4

source§

fn zwyw(self) -> UVec4

source§

fn zwzx(self) -> UVec4

source§

fn zwzy(self) -> UVec4

source§

fn zwzz(self) -> UVec4

source§

fn zwzw(self) -> UVec4

source§

fn zwwx(self) -> UVec4

source§

fn zwwy(self) -> UVec4

source§

fn zwwz(self) -> UVec4

source§

fn zwww(self) -> UVec4

source§

fn wxxx(self) -> UVec4

source§

fn wxxy(self) -> UVec4

source§

fn wxxz(self) -> UVec4

source§

fn wxxw(self) -> UVec4

source§

fn wxyx(self) -> UVec4

source§

fn wxyy(self) -> UVec4

source§

fn wxyz(self) -> UVec4

source§

fn wxyw(self) -> UVec4

source§

fn wxzx(self) -> UVec4

source§

fn wxzy(self) -> UVec4

source§

fn wxzz(self) -> UVec4

source§

fn wxzw(self) -> UVec4

source§

fn wxwx(self) -> UVec4

source§

fn wxwy(self) -> UVec4

source§

fn wxwz(self) -> UVec4

source§

fn wxww(self) -> UVec4

source§

fn wyxx(self) -> UVec4

source§

fn wyxy(self) -> UVec4

source§

fn wyxz(self) -> UVec4

source§

fn wyxw(self) -> UVec4

source§

fn wyyx(self) -> UVec4

source§

fn wyyy(self) -> UVec4

source§

fn wyyz(self) -> UVec4

source§

fn wyyw(self) -> UVec4

source§

fn wyzx(self) -> UVec4

source§

fn wyzy(self) -> UVec4

source§

fn wyzz(self) -> UVec4

source§

fn wyzw(self) -> UVec4

source§

fn wywx(self) -> UVec4

source§

fn wywy(self) -> UVec4

source§

fn wywz(self) -> UVec4

source§

fn wyww(self) -> UVec4

source§

fn wzxx(self) -> UVec4

source§

fn wzxy(self) -> UVec4

source§

fn wzxz(self) -> UVec4

source§

fn wzxw(self) -> UVec4

source§

fn wzyx(self) -> UVec4

source§

fn wzyy(self) -> UVec4

source§

fn wzyz(self) -> UVec4

source§

fn wzyw(self) -> UVec4

source§

fn wzzx(self) -> UVec4

source§

fn wzzy(self) -> UVec4

source§

fn wzzz(self) -> UVec4

source§

fn wzzw(self) -> UVec4

source§

fn wzwx(self) -> UVec4

source§

fn wzwy(self) -> UVec4

source§

fn wzwz(self) -> UVec4

source§

fn wzww(self) -> UVec4

source§

fn wwxx(self) -> UVec4

source§

fn wwxy(self) -> UVec4

source§

fn wwxz(self) -> UVec4

source§

fn wwxw(self) -> UVec4

source§

fn wwyx(self) -> UVec4

source§

fn wwyy(self) -> UVec4

source§

fn wwyz(self) -> UVec4

source§

fn wwyw(self) -> UVec4

source§

fn wwzx(self) -> UVec4

source§

fn wwzy(self) -> UVec4

source§

fn wwzz(self) -> UVec4

source§

fn wwzw(self) -> UVec4

source§

fn wwwx(self) -> UVec4

source§

fn wwwy(self) -> UVec4

source§

fn wwwz(self) -> UVec4

source§

fn wwww(self) -> UVec4

source§

impl Zeroable for UVec4

§

fn zeroed() -> Self

source§

impl Copy for UVec4

source§

impl Eq for UVec4

source§

impl Pod for UVec4

source§

impl StructuralEq for UVec4

source§

impl StructuralPartialEq for UVec4

Auto Trait Implementations§

§

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> AnyBitPattern for Twhere T: Pod,

§

impl<T> NoUninit for Twhere T: Pod,