Struct bevy::math::u32::UVec2

source ·
pub struct UVec2 {
    pub x: u32,
    pub y: u32,
}
Expand description

A 2-dimensional vector.

Fields§

§x: u32§y: u32

Implementations§

source§

impl UVec2

source

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

All zeroes.

source

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

All ones.

source

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

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

source

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

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

source

pub const AXES: [UVec2; 2] = [Self::X, Self::Y]

The unit axes.

source

pub const fn new(x: u32, y: u32) -> UVec2

Creates a new vector.

source

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

Creates a vector with all elements set to v.

source

pub fn select(mask: BVec2, if_true: UVec2, if_false: UVec2) -> UVec2

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; 2]) -> UVec2

Creates a new vector from an array.

source

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

[x, y]

source

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

Creates a vector from the first 2 values in slice.

Panics

Panics if slice is less than 2 elements long.

source

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

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

Panics

Panics if slice is less than 2 elements long.

source

pub const fn extend(self, z: u32) -> UVec3

Creates a 3D vector from self and the given z value.

source

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

Computes the dot product of self and rhs.

source

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

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

source

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

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: UVec2) -> UVec2

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: UVec2, max: UVec2) -> UVec2

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: UVec2) -> BVec2

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: UVec2) -> BVec2

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: UVec2) -> BVec2

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: UVec2) -> BVec2

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: UVec2) -> BVec2

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: UVec2) -> BVec2

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_vec2(&self) -> Vec2

Casts all elements of self to f32.

source

pub fn as_dvec2(&self) -> DVec2

Casts all elements of self to f64.

source

pub fn as_ivec2(&self) -> IVec2

Casts all elements of self to i32.

Trait Implementations§

source§

impl Add<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<UVec2> for u32

§

type Output = UVec2

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<UVec2> for UVec2

source§

fn add_assign(&mut self, rhs: UVec2)

Performs the += operation. Read more
source§

impl AddAssign<u32> for UVec2

source§

fn add_assign(&mut self, rhs: u32)

Performs the += operation. Read more
source§

impl AsMut<[u32; 2]> for UVec2

source§

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

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

impl AsMutVectorParts<u32, 2> for UVec2where UVec2: AsMut<[u32; 2]>, u32: VectorScalar,

§

fn as_mut_parts(&mut self) -> &mut [u32; 2]

source§

impl AsRef<[u32; 2]> for UVec2

source§

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

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

impl AsRefVectorParts<u32, 2> for UVec2where UVec2: AsRef<[u32; 2]>, u32: VectorScalar,

§

fn as_ref_parts(&self) -> &[u32; 2]

source§

impl BitAnd<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for UVec2

source§

fn clone(&self) -> UVec2

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
§

impl CreateFrom for UVec2where UVec2: FromVectorParts<u32, 2>, u32: VectorScalar + CreateFrom,

§

fn create_from<B>(reader: &mut Reader<B>) -> UVec2where B: BufferRef,

source§

impl Debug for UVec2

source§

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

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

impl Default for UVec2

source§

fn default() -> UVec2

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

impl<'de> Deserialize<'de> for UVec2

source§

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

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

impl Display for UVec2

source§

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

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

impl Div<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<UVec2> for u32

§

type Output = UVec2

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<UVec2> for UVec2

source§

fn div_assign(&mut self, rhs: UVec2)

Performs the /= operation. Read more
source§

impl DivAssign<u32> for UVec2

source§

fn div_assign(&mut self, rhs: u32)

Performs the /= operation. Read more
source§

impl From<[u32; 2]> for UVec2

source§

fn from(a: [u32; 2]) -> UVec2

Converts to this type from the input type.
source§

impl From<(u32, u32)> for UVec2

source§

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

Converts to this type from the input type.
source§

impl From<UVec2> for [u32; 2]

source§

fn from(v: UVec2) -> [u32; 2]

Converts to this type from the input type.
source§

impl From<UVec2> for (u32, u32)

source§

fn from(v: UVec2) -> (u32, u32)

Converts to this type from the input type.
§

impl FromReflect for UVec2where u32: FromReflect,

§

fn from_reflect(reflect: &(dyn Reflect + 'static)) -> Option<UVec2>

Constructs a concrete instance of Self from a reflected value.
§

fn take_from_reflect( reflect: Box<dyn Reflect + 'static, Global> ) -> Result<Self, Box<dyn Reflect + 'static, Global>>

Attempts to downcast the given value to Self using, constructing the value using from_reflect if that fails. Read more
§

impl FromVectorParts<u32, 2> for UVec2where UVec2: From<[u32; 2]>, u32: VectorScalar,

§

fn from_parts(parts: [u32; 2]) -> UVec2

§

impl GetTypeRegistration for UVec2where u32: Reflect,

source§

impl Hash for UVec2

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 UVec2

§

type Output = u32

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for UVec2

source§

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

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

impl Mul<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<UVec2> for u32

§

type Output = UVec2

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<UVec2> for UVec2

source§

fn mul_assign(&mut self, rhs: UVec2)

Performs the *= operation. Read more
source§

impl MulAssign<u32> for UVec2

source§

fn mul_assign(&mut self, rhs: u32)

Performs the *= operation. Read more
source§

impl Not for UVec2

§

type Output = UVec2

The resulting type after applying the ! operator.
source§

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

Performs the unary ! operation. Read more
source§

impl PartialEq<UVec2> for UVec2

source§

fn eq(&self, other: &UVec2) -> 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 UVec2> for UVec2

source§

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

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

impl Product<UVec2> for UVec2

source§

fn product<I>(iter: I) -> UVec2where I: Iterator<Item = UVec2>,

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

impl ReadFrom for UVec2where UVec2: AsMutVectorParts<u32, 2>, u32: VectorScalar + ReadFrom,

§

fn read_from<B>(&mut self, reader: &mut Reader<B>)where B: BufferRef,

§

impl Reflect for UVec2where u32: Reflect,

§

fn type_name(&self) -> &str

Returns the type name of the underlying type.
§

fn get_type_info(&self) -> &'static TypeInfo

Returns the TypeInfo of the underlying type. Read more
§

fn into_any(self: Box<UVec2, Global>) -> Box<dyn Any + 'static, Global>

Returns the value as a Box<dyn Any>.
§

fn as_any(&self) -> &(dyn Any + 'static)

Returns the value as a &dyn Any.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Returns the value as a &mut dyn Any.
§

fn into_reflect(self: Box<UVec2, Global>) -> Box<dyn Reflect + 'static, Global>

Casts this type to a boxed reflected value.
§

fn as_reflect(&self) -> &(dyn Reflect + 'static)

Casts this type to a reflected value.
§

fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)

Casts this type to a mutable reflected value.
§

fn clone_value(&self) -> Box<dyn Reflect + 'static, Global>

Clones the value as a Reflect trait object. Read more
§

fn set( &mut self, value: Box<dyn Reflect + 'static, Global> ) -> Result<(), Box<dyn Reflect + 'static, Global>>

Performs a type-checked assignment of a reflected value to this value. Read more
§

fn apply(&mut self, value: &(dyn Reflect + 'static))

Applies a reflected value to this value. Read more
§

fn reflect_ref(&self) -> ReflectRef<'_>

Returns an enumeration of “kinds” of type. Read more
§

fn reflect_mut(&mut self) -> ReflectMut<'_>

Returns a mutable enumeration of “kinds” of type. Read more
§

fn reflect_owned(self: Box<UVec2, Global>) -> ReflectOwned

Returns an owned enumeration of “kinds” of type. Read more
§

fn reflect_hash(&self) -> Option<u64>

Returns a hash of the value (which includes the type). Read more
§

fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>

Returns a “partial equality” comparison result. Read more
§

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

Debug formatter for the value. Read more
§

fn serializable(&self) -> Option<Serializable<'_>>

Returns a serializable version of the value. Read more
source§

impl Rem<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<UVec2> for u32

§

type Output = UVec2

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<UVec2> for UVec2

source§

fn rem_assign(&mut self, rhs: UVec2)

Performs the %= operation. Read more
source§

impl RemAssign<u32> for UVec2

source§

fn rem_assign(&mut self, rhs: u32)

Performs the %= operation. Read more
source§

impl Serialize for UVec2

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
§

impl ShaderSize for UVec2where u32: ShaderSize,

§

const SHADER_SIZE: NonZeroU64 = Self::METADATA.min_size().0

Represents WGSL Size (equivalent to ShaderType::min_size)
§

impl ShaderType for UVec2where u32: ShaderSize,

§

fn min_size() -> NonZeroU64

Represents the minimum size of Self (equivalent to GPUBufferBindingLayout.minBindingSize) Read more
§

fn size(&self) -> NonZeroU64

Returns the size of Self at runtime Read more
§

fn assert_uniform_compat()

source§

impl Shl<IVec2> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<UVec2> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<UVec2> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<i16> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<i32> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<i8> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<u16> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<u32> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<u8> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shr<IVec2> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<UVec2> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<UVec2> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<i16> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<i32> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<i8> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<u16> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<u32> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<u8> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
§

impl Struct for UVec2where u32: Reflect,

§

fn field(&self, name: &str) -> Option<&(dyn Reflect + 'static)>

Returns a reference to the value of the field named name as a &dyn Reflect.
§

fn field_mut(&mut self, name: &str) -> Option<&mut (dyn Reflect + 'static)>

Returns a mutable reference to the value of the field named name as a &mut dyn Reflect.
§

fn field_at(&self, index: usize) -> Option<&(dyn Reflect + 'static)>

Returns a reference to the value of the field with index index as a &dyn Reflect.
§

fn field_at_mut(&mut self, index: usize) -> Option<&mut (dyn Reflect + 'static)>

Returns a mutable reference to the value of the field with index index as a &mut dyn Reflect.
§

fn name_at(&self, index: usize) -> Option<&str>

Returns the name of the field with index index.
§

fn field_len(&self) -> usize

Returns the number of fields in the struct.
§

fn iter_fields(&self) -> FieldIter<'_>

Returns an iterator over the values of the reflectable fields for this struct.
§

fn clone_dynamic(&self) -> DynamicStruct

Clones the struct into a DynamicStruct.
source§

impl Sub<UVec2> for UVec2

§

type Output = UVec2

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<UVec2> for u32

§

type Output = UVec2

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<u32> for UVec2

§

type Output = UVec2

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<UVec2> for UVec2

source§

fn sub_assign(&mut self, rhs: UVec2)

Performs the -= operation. Read more
source§

impl SubAssign<u32> for UVec2

source§

fn sub_assign(&mut self, rhs: u32)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum<UVec2> for UVec2

source§

fn sum<I>(iter: I) -> UVec2where I: Iterator<Item = UVec2>,

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

impl Typed for UVec2where u32: Reflect,

§

fn type_info() -> &'static TypeInfo

Returns the compile-time info for the underlying type.
source§

impl Vec2Swizzles for UVec2

§

type Vec3 = UVec3

§

type Vec4 = UVec4

source§

fn xx(self) -> UVec2

source§

fn xy(self) -> UVec2

source§

fn yx(self) -> UVec2

source§

fn yy(self) -> UVec2

source§

fn xxx(self) -> UVec3

source§

fn xxy(self) -> UVec3

source§

fn xyx(self) -> UVec3

source§

fn xyy(self) -> UVec3

source§

fn yxx(self) -> UVec3

source§

fn yxy(self) -> UVec3

source§

fn yyx(self) -> UVec3

source§

fn yyy(self) -> UVec3

source§

fn xxxx(self) -> UVec4

source§

fn xxxy(self) -> UVec4

source§

fn xxyx(self) -> UVec4

source§

fn xxyy(self) -> UVec4

source§

fn xyxx(self) -> UVec4

source§

fn xyxy(self) -> UVec4

source§

fn xyyx(self) -> UVec4

source§

fn xyyy(self) -> UVec4

source§

fn yxxx(self) -> UVec4

source§

fn yxxy(self) -> UVec4

source§

fn yxyx(self) -> UVec4

source§

fn yxyy(self) -> UVec4

source§

fn yyxx(self) -> UVec4

source§

fn yyxy(self) -> UVec4

source§

fn yyyx(self) -> UVec4

source§

fn yyyy(self) -> UVec4

§

impl WriteInto for UVec2where UVec2: AsRefVectorParts<u32, 2>, u32: VectorScalar + WriteInto,

§

fn write_into<B>(&self, writer: &mut Writer<B>)where B: BufferMut,

source§

impl Zeroable for UVec2

§

fn zeroed() -> Self

source§

impl Copy for UVec2

source§

impl Eq for UVec2

source§

impl Pod for UVec2

source§

impl StructuralEq for UVec2

source§

impl StructuralPartialEq for UVec2

Auto Trait Implementations§

§

impl RefUnwindSafe for UVec2

§

impl Send for UVec2

§

impl Sync for UVec2

§

impl Unpin for UVec2

§

impl UnwindSafe for UVec2

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,

§

fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U

Return the T ShaderType for self. When used in AsBindGroup derives, it is safe to assume that all images in self exist.
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> CallHasher for Twhere T: Hash + ?Sized,

§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64where H: Hash + ?Sized, B: BuildHasher,

§

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.
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<T> Downcast for Twhere T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send + 'static>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<T> DynEq for Twhere T: Any + Eq,

§

fn as_any(&self) -> &(dyn Any + 'static)

Casts the type to dyn Any.
§

fn dyn_eq(&self, other: &(dyn DynEq + 'static)) -> bool

This method tests for self and other values to be equal. Read more
§

impl<T> DynHash for Twhere T: DynEq + Hash,

§

fn as_dyn_eq(&self) -> &(dyn DynEq + 'static)

Casts the type to dyn Any.
§

fn dyn_hash(&self, state: &mut dyn Hasher)

Feeds this value into the given Hasher.
source§

impl<Q, K> Equivalent<K> for Qwhere 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.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

§

impl<T> FromWorld for Twhere T: Default,

§

fn from_world(_world: &mut World) -> T

Creates Self using data from the given World
§

impl<S> GetField for Swhere S: Struct,

§

fn get_field<T>(&self, name: &str) -> Option<&T>where T: Reflect,

Returns a reference to the value of the field named name, downcast to T.
§

fn get_field_mut<T>(&mut self, name: &str) -> Option<&mut T>where T: Reflect,

Returns a mutable reference to the value of the field named name, downcast to T.
§

impl<T> GetPath for Twhere T: Reflect,

§

fn reflect_path<'r, 'p>( &'r self, path: &'p str ) -> Result<&'r (dyn Reflect + 'static), ReflectPathError<'p>>

Returns a reference to the value specified by path. Read more
§

fn reflect_path_mut<'r, 'p>( &'r mut self, path: &'p str ) -> Result<&'r mut (dyn Reflect + 'static), ReflectPathError<'p>>

Returns a mutable reference to the value specified by path. Read more
§

fn path<T, 'r, 'p>( &'r self, path: &'p str ) -> Result<&'r T, ReflectPathError<'p>>where T: Reflect,

Returns a statically typed reference to the value specified by path. Read more
§

fn path_mut<T, 'r, 'p>( &'r mut self, path: &'p str ) -> Result<&'r mut T, ReflectPathError<'p>>where T: Reflect,

Returns a statically typed mutable reference to the value specified by path. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Serialize for Twhere T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

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
§

impl<T, U> ToSample<U> for Twhere U: FromSample<T>,

§

fn to_sample_(self) -> U

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> TypeData for Twhere T: 'static + Send + Sync + Clone,

§

fn clone_type_data(&self) -> Box<dyn TypeData + 'static, Global>

§

impl<T> Upcast<T> for T

§

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

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

impl<T> AnyBitPattern for Twhere T: Pod,

source§

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

§

impl<S, T> Duplex<S> for Twhere T: FromSample<S> + ToSample<S>,

§

impl<T> Event for Twhere T: Send + Sync + 'static,

§

impl<T> NoUninit for Twhere T: Pod,

source§

impl<T, Rhs> NumAssignOps<Rhs> for Twhere T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for Twhere T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,