Struct nannou::prelude::UVec4

source ·
pub struct UVec4(/* private fields */);
Expand description

A 4-dimensional vector.

Implementations§

source§

impl UVec4

source

pub const ZERO: UVec4 = _

All zeroes.

source

pub const ONE: UVec4 = _

All ones.

source

pub const X: UVec4 = _

[1, 0, 0, 0]: a unit-length vector pointing along the positive X axis.

source

pub const Y: UVec4 = _

[0, 1, 0, 0]: a unit-length vector pointing along the positive Y axis.

source

pub const Z: UVec4 = _

[0, 0, 1, 0]: a unit-length vector pointing along the positive Z axis.

source

pub const W: UVec4 = _

[0, 0, 0, 1]: a unit-length vector pointing along the positive W axis.

source

pub const AXES: [UVec4; 4] = _

The unit axes.

source

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

Creates a new 4D vector.

source

pub fn truncate(self) -> UVec3

Creates a Vec3 from the x, y and z elements of self, discarding w.

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

To truncate to Vec3A use Vec3A::from().

source

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

[x, y, z, w]

source

pub 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 fn dot(self, other: UVec4) -> u32

Computes the dot product of self and other.

source

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

Returns a vector containing the mininum values for each element of self and other.

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

source

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

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

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

source

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

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

Each element in min must be less-or-equal to the corresponing 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, other: UVec4) -> BVec4

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

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

source

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

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

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

source

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

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

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

source

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

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

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

source

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

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

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

source

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

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

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

source

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

Creates a vector from the first N values in slice.

Panics

Panics if slice is less than N elements long.

source

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

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

Panics

Panics if slice is less than N elements long.

source

pub fn as_f32(&self) -> Vec4

Casts all elements of self to f32.

source

pub fn as_f64(&self) -> DVec4

Casts all elements of self to f64.

source

pub fn as_i32(&self) -> IVec4

Casts all elements of self to i32.

Trait Implementations§

source§

impl Add<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add for UVec4

§

type Output = UVec4

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<u32> for UVec4

source§

fn add_assign(&mut self, other: u32)

Performs the += operation. Read more
source§

impl AddAssign for UVec4

source§

fn add_assign(&mut self, other: UVec4)

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 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 Deref for UVec4

§

type Target = XYZW<u32>

The resulting type after dereferencing.
source§

fn deref(&self) -> &<UVec4 as Deref>::Target

Dereferences the value.
source§

impl DerefMut for UVec4

source§

fn deref_mut(&mut self) -> &mut <UVec4 as Deref>::Target

Mutably dereferences the value.
source§

impl<'de> Deserialize<'de> for UVec4

source§

fn deserialize<D>( deserializer: D ) -> Result<UVec4, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for UVec4

source§

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

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

impl Distribution<UVec4> for Standard

source§

fn sample<R>(&self, rng: &mut R) -> UVec4
where R: Rng + ?Sized,

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Div<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div for UVec4

§

type Output = UVec4

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<u32> for UVec4

source§

fn div_assign(&mut self, other: u32)

Performs the /= operation. Read more
source§

impl DivAssign for UVec4

source§

fn div_assign(&mut self, other: UVec4)

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, u32, u32, u32)> for UVec4

source§

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

Converts to this type from the input type.
source§

impl From<UVec4> for [u32; 4]

source§

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

Converts to this type from the input type.
source§

impl From<UVec4> for UVec2

source§

fn from(v: UVec4) -> UVec2

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

source§

impl From<UVec4> for UVec3

source§

fn from(v: UVec4) -> UVec3

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

source§

impl From<UVec4> for XYZW<u32>

source§

fn from(t: UVec4) -> XYZW<u32>

Converts to this type from the input type.
source§

impl From<XYZW<u32>> for UVec4

source§

fn from(t: XYZW<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<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul for UVec4

§

type Output = UVec4

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<u32> for UVec4

source§

fn mul_assign(&mut self, other: u32)

Performs the *= operation. Read more
source§

impl MulAssign for UVec4

source§

fn mul_assign(&mut self, other: UVec4)

Performs the *= operation. Read more
source§

impl PartialEq 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) -> UVec4
where I: Iterator<Item = &'a UVec4>,

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

impl Serialize for UVec4

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub<u32> for UVec4

§

type Output = UVec4

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub for UVec4

§

type Output = UVec4

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<u32> for UVec4

source§

fn sub_assign(&mut self, other: u32)

Performs the -= operation. Read more
source§

impl SubAssign for UVec4

source§

fn sub_assign(&mut self, other: UVec4)

Performs the -= operation. Read more
source§

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

source§

fn sum<I>(iter: I) -> UVec4
where I: Iterator<Item = &'a 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 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 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§

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 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 xyzw(self) -> Self

source§

impl Copy for UVec4

source§

impl Eq 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<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Component + Float, Swp: WhitePoint, Dwp: WhitePoint, D: AdaptFrom<S, Swp, Dwp, T>,

source§

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<Swp, Dwp, T>,

Convert the source color to the destination color using the specified method
source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T, U> ConvertInto<U> for T
where U: ConvertFrom<T>,

source§

fn convert_into(self) -> U

Convert into T with values clamped to the color defined bounds Read more
source§

fn convert_unclamped_into(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
source§

fn try_convert_into(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSync for T
where T: Sync,