Struct bevy_internal::math::u16::U16Vec3

source ·
#[repr(C)]
pub struct U16Vec3 { pub x: u16, pub y: u16, pub z: u16, }
Expand description

A 3-dimensional vector.

Fields§

§x: u16§y: u16§z: u16

Implementations§

source§

impl U16Vec3

source

pub const ZERO: U16Vec3 = _

All zeroes.

source

pub const ONE: U16Vec3 = _

All ones.

source

pub const MIN: U16Vec3 = _

All u16::MIN.

source

pub const MAX: U16Vec3 = _

All u16::MAX.

source

pub const X: U16Vec3 = _

A unit vector pointing along the positive X axis.

source

pub const Y: U16Vec3 = _

A unit vector pointing along the positive Y axis.

source

pub const Z: U16Vec3 = _

A unit vector pointing along the positive Z axis.

source

pub const AXES: [U16Vec3; 3] = _

The unit axes.

source

pub const fn new(x: u16, y: u16, z: u16) -> U16Vec3

Creates a new vector.

source

pub const fn splat(v: u16) -> U16Vec3

Creates a vector with all elements set to v.

source

pub fn select(mask: BVec3, if_true: U16Vec3, if_false: U16Vec3) -> U16Vec3

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: [u16; 3]) -> U16Vec3

Creates a new vector from an array.

source

pub const fn to_array(&self) -> [u16; 3]

[x, y, z]

source

pub const fn from_slice(slice: &[u16]) -> U16Vec3

Creates a vector from the first 3 values in slice.

§Panics

Panics if slice is less than 3 elements long.

source

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

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

§Panics

Panics if slice is less than 3 elements long.

source

pub fn extend(self, w: u16) -> U16Vec4

Creates a 4D vector from self and the given w value.

source

pub fn truncate(self) -> U16Vec2

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

Truncation may also be performed by using self.xy().

source

pub fn dot(self, rhs: U16Vec3) -> u16

Computes the dot product of self and rhs.

source

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

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

source

pub fn cross(self, rhs: U16Vec3) -> U16Vec3

Computes the cross product of self and rhs.

source

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

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

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

Component-wise clamping of values, similar to u16::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) -> u16

Returns the horizontal minimum of self.

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

source

pub fn max_element(self) -> u16

Returns the horizontal maximum of self.

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

source

pub fn cmpeq(self, rhs: U16Vec3) -> BVec3

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: U16Vec3) -> BVec3

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: U16Vec3) -> BVec3

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: U16Vec3) -> BVec3

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: U16Vec3) -> BVec3

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: U16Vec3) -> BVec3

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 length_squared(self) -> u16

Computes the squared length of self.

source

pub fn as_vec3(&self) -> Vec3

Casts all elements of self to f32.

source

pub fn as_vec3a(&self) -> Vec3A

Casts all elements of self to f32.

source

pub fn as_dvec3(&self) -> DVec3

Casts all elements of self to f64.

source

pub fn as_i16vec3(&self) -> I16Vec3

Casts all elements of self to i16.

source

pub fn as_ivec3(&self) -> IVec3

Casts all elements of self to i32.

source

pub fn as_uvec3(&self) -> UVec3

Casts all elements of self to u32.

source

pub fn as_i64vec3(&self) -> I64Vec3

Casts all elements of self to i64.

source

pub fn as_u64vec3(&self) -> U64Vec3

Casts all elements of self to u64.

source

pub const fn wrapping_add(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the wrapping addition of self and rhs.

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

source

pub const fn wrapping_sub(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the wrapping subtraction of self and rhs.

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

source

pub const fn wrapping_mul(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the wrapping multiplication of self and rhs.

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

source

pub const fn wrapping_div(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the wrapping division of self and rhs.

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

source

pub const fn saturating_add(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the saturating addition of self and rhs.

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

source

pub const fn saturating_sub(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the saturating subtraction of self and rhs.

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

source

pub const fn saturating_mul(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the saturating multiplication of self and rhs.

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

source

pub const fn saturating_div(self, rhs: U16Vec3) -> U16Vec3

Returns a vector containing the saturating division of self and rhs.

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

Trait Implementations§

source§

impl Add<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the + operator.
source§

fn add(self, rhs: u16) -> U16Vec3

Performs the + operation. Read more
source§

impl Add for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<u16> for U16Vec3

source§

fn add_assign(&mut self, rhs: u16)

Performs the += operation. Read more
source§

impl AddAssign for U16Vec3

source§

fn add_assign(&mut self, rhs: U16Vec3)

Performs the += operation. Read more
source§

impl AsMut<[u16; 3]> for U16Vec3

source§

fn as_mut(&mut self) -> &mut [u16; 3]

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

impl AsRef<[u16; 3]> for U16Vec3

source§

fn as_ref(&self) -> &[u16; 3]

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

impl BitAnd<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for U16Vec3

source§

fn clone(&self) -> U16Vec3

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 U16Vec3

source§

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

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

impl Default for U16Vec3

source§

fn default() -> U16Vec3

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

impl<'de> Deserialize<'de> for U16Vec3

source§

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

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

impl Display for U16Vec3

source§

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

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

impl Div<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the / operator.
source§

fn div(self, rhs: u16) -> U16Vec3

Performs the / operation. Read more
source§

impl Div for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<u16> for U16Vec3

source§

fn div_assign(&mut self, rhs: u16)

Performs the /= operation. Read more
source§

impl DivAssign for U16Vec3

source§

fn div_assign(&mut self, rhs: U16Vec3)

Performs the /= operation. Read more
source§

impl From<[u16; 3]> for U16Vec3

source§

fn from(a: [u16; 3]) -> U16Vec3

Converts to this type from the input type.
source§

impl From<(U16Vec2, u16)> for U16Vec3

source§

fn from(_: (U16Vec2, u16)) -> U16Vec3

Converts to this type from the input type.
source§

impl From<(u16, u16, u16)> for U16Vec3

source§

fn from(t: (u16, u16, u16)) -> U16Vec3

Converts to this type from the input type.
source§

impl From<U16Vec3> for [u16; 3]

source§

fn from(v: U16Vec3) -> [u16; 3]

Converts to this type from the input type.
source§

impl From<U16Vec3> for (u16, u16, u16)

source§

fn from(v: U16Vec3) -> (u16, u16, u16)

Converts to this type from the input type.
source§

impl From<U16Vec3> for I64Vec3

source§

fn from(v: U16Vec3) -> I64Vec3

Converts to this type from the input type.
source§

impl From<U16Vec3> for IVec3

source§

fn from(v: U16Vec3) -> IVec3

Converts to this type from the input type.
source§

impl From<U16Vec3> for U64Vec3

source§

fn from(v: U16Vec3) -> U64Vec3

Converts to this type from the input type.
source§

impl From<U16Vec3> for UVec3

source§

fn from(v: U16Vec3) -> UVec3

Converts to this type from the input type.
source§

impl Hash for U16Vec3

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 U16Vec3

§

type Output = u16

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for U16Vec3

source§

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

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

impl Mul<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: u16) -> U16Vec3

Performs the * operation. Read more
source§

impl Mul for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<u16> for U16Vec3

source§

fn mul_assign(&mut self, rhs: u16)

Performs the *= operation. Read more
source§

impl MulAssign for U16Vec3

source§

fn mul_assign(&mut self, rhs: U16Vec3)

Performs the *= operation. Read more
source§

impl Not for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the ! operator.
source§

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

Performs the unary ! operation. Read more
source§

impl PartialEq for U16Vec3

source§

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

source§

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

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

impl Product for U16Vec3

source§

fn product<I>(iter: I) -> U16Vec3
where I: Iterator<Item = U16Vec3>,

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

impl Rem<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the % operator.
source§

fn rem(self, rhs: u16) -> U16Vec3

Performs the % operation. Read more
source§

impl Rem for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<u16> for U16Vec3

source§

fn rem_assign(&mut self, rhs: u16)

Performs the %= operation. Read more
source§

impl RemAssign for U16Vec3

source§

fn rem_assign(&mut self, rhs: U16Vec3)

Performs the %= operation. Read more
source§

impl Serialize for U16Vec3

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 Shl<IVec3> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<UVec3> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i16> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i32> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i64> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i8> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u16> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u32> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u64> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u8> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the << operation. Read more
source§

impl Shr<IVec3> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<UVec3> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i16> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i32> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i64> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i8> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u16> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u32> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u64> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u8> for U16Vec3

§

type Output = U16Vec3

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

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

Performs the >> operation. Read more
source§

impl Sub<u16> for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u16) -> U16Vec3

Performs the - operation. Read more
source§

impl Sub for U16Vec3

§

type Output = U16Vec3

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<u16> for U16Vec3

source§

fn sub_assign(&mut self, rhs: u16)

Performs the -= operation. Read more
source§

impl SubAssign for U16Vec3

source§

fn sub_assign(&mut self, rhs: U16Vec3)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum for U16Vec3

source§

fn sum<I>(iter: I) -> U16Vec3
where I: Iterator<Item = U16Vec3>,

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

impl TryFrom<I16Vec3> for U16Vec3

§

type Error = TryFromIntError

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

fn try_from(v: I16Vec3) -> Result<U16Vec3, <U16Vec3 as TryFrom<I16Vec3>>::Error>

Performs the conversion.
source§

impl TryFrom<I64Vec3> for U16Vec3

§

type Error = TryFromIntError

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

fn try_from(v: I64Vec3) -> Result<U16Vec3, <U16Vec3 as TryFrom<I64Vec3>>::Error>

Performs the conversion.
source§

impl TryFrom<IVec3> for U16Vec3

§

type Error = TryFromIntError

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

fn try_from(v: IVec3) -> Result<U16Vec3, <U16Vec3 as TryFrom<IVec3>>::Error>

Performs the conversion.
source§

impl TryFrom<U16Vec3> for I16Vec3

§

type Error = TryFromIntError

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

fn try_from(v: U16Vec3) -> Result<I16Vec3, <I16Vec3 as TryFrom<U16Vec3>>::Error>

Performs the conversion.
source§

impl TryFrom<U64Vec3> for U16Vec3

§

type Error = TryFromIntError

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

fn try_from(v: U64Vec3) -> Result<U16Vec3, <U16Vec3 as TryFrom<U64Vec3>>::Error>

Performs the conversion.
source§

impl TryFrom<UVec3> for U16Vec3

§

type Error = TryFromIntError

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

fn try_from(v: UVec3) -> Result<U16Vec3, <U16Vec3 as TryFrom<UVec3>>::Error>

Performs the conversion.
source§

impl Vec3Swizzles for U16Vec3

§

type Vec2 = U16Vec2

§

type Vec4 = U16Vec4

source§

fn xx(self) -> U16Vec2

source§

fn xy(self) -> U16Vec2

source§

fn xz(self) -> U16Vec2

source§

fn yx(self) -> U16Vec2

source§

fn yy(self) -> U16Vec2

source§

fn yz(self) -> U16Vec2

source§

fn zx(self) -> U16Vec2

source§

fn zy(self) -> U16Vec2

source§

fn zz(self) -> U16Vec2

source§

fn xxx(self) -> U16Vec3

source§

fn xxy(self) -> U16Vec3

source§

fn xxz(self) -> U16Vec3

source§

fn xyx(self) -> U16Vec3

source§

fn xyy(self) -> U16Vec3

source§

fn xyz(self) -> U16Vec3

source§

fn xzx(self) -> U16Vec3

source§

fn xzy(self) -> U16Vec3

source§

fn xzz(self) -> U16Vec3

source§

fn yxx(self) -> U16Vec3

source§

fn yxy(self) -> U16Vec3

source§

fn yxz(self) -> U16Vec3

source§

fn yyx(self) -> U16Vec3

source§

fn yyy(self) -> U16Vec3

source§

fn yyz(self) -> U16Vec3

source§

fn yzx(self) -> U16Vec3

source§

fn yzy(self) -> U16Vec3

source§

fn yzz(self) -> U16Vec3

source§

fn zxx(self) -> U16Vec3

source§

fn zxy(self) -> U16Vec3

source§

fn zxz(self) -> U16Vec3

source§

fn zyx(self) -> U16Vec3

source§

fn zyy(self) -> U16Vec3

source§

fn zyz(self) -> U16Vec3

source§

fn zzx(self) -> U16Vec3

source§

fn zzy(self) -> U16Vec3

source§

fn zzz(self) -> U16Vec3

source§

fn xxxx(self) -> U16Vec4

source§

fn xxxy(self) -> U16Vec4

source§

fn xxxz(self) -> U16Vec4

source§

fn xxyx(self) -> U16Vec4

source§

fn xxyy(self) -> U16Vec4

source§

fn xxyz(self) -> U16Vec4

source§

fn xxzx(self) -> U16Vec4

source§

fn xxzy(self) -> U16Vec4

source§

fn xxzz(self) -> U16Vec4

source§

fn xyxx(self) -> U16Vec4

source§

fn xyxy(self) -> U16Vec4

source§

fn xyxz(self) -> U16Vec4

source§

fn xyyx(self) -> U16Vec4

source§

fn xyyy(self) -> U16Vec4

source§

fn xyyz(self) -> U16Vec4

source§

fn xyzx(self) -> U16Vec4

source§

fn xyzy(self) -> U16Vec4

source§

fn xyzz(self) -> U16Vec4

source§

fn xzxx(self) -> U16Vec4

source§

fn xzxy(self) -> U16Vec4

source§

fn xzxz(self) -> U16Vec4

source§

fn xzyx(self) -> U16Vec4

source§

fn xzyy(self) -> U16Vec4

source§

fn xzyz(self) -> U16Vec4

source§

fn xzzx(self) -> U16Vec4

source§

fn xzzy(self) -> U16Vec4

source§

fn xzzz(self) -> U16Vec4

source§

fn yxxx(self) -> U16Vec4

source§

fn yxxy(self) -> U16Vec4

source§

fn yxxz(self) -> U16Vec4

source§

fn yxyx(self) -> U16Vec4

source§

fn yxyy(self) -> U16Vec4

source§

fn yxyz(self) -> U16Vec4

source§

fn yxzx(self) -> U16Vec4

source§

fn yxzy(self) -> U16Vec4

source§

fn yxzz(self) -> U16Vec4

source§

fn yyxx(self) -> U16Vec4

source§

fn yyxy(self) -> U16Vec4

source§

fn yyxz(self) -> U16Vec4

source§

fn yyyx(self) -> U16Vec4

source§

fn yyyy(self) -> U16Vec4

source§

fn yyyz(self) -> U16Vec4

source§

fn yyzx(self) -> U16Vec4

source§

fn yyzy(self) -> U16Vec4

source§

fn yyzz(self) -> U16Vec4

source§

fn yzxx(self) -> U16Vec4

source§

fn yzxy(self) -> U16Vec4

source§

fn yzxz(self) -> U16Vec4

source§

fn yzyx(self) -> U16Vec4

source§

fn yzyy(self) -> U16Vec4

source§

fn yzyz(self) -> U16Vec4

source§

fn yzzx(self) -> U16Vec4

source§

fn yzzy(self) -> U16Vec4

source§

fn yzzz(self) -> U16Vec4

source§

fn zxxx(self) -> U16Vec4

source§

fn zxxy(self) -> U16Vec4

source§

fn zxxz(self) -> U16Vec4

source§

fn zxyx(self) -> U16Vec4

source§

fn zxyy(self) -> U16Vec4

source§

fn zxyz(self) -> U16Vec4

source§

fn zxzx(self) -> U16Vec4

source§

fn zxzy(self) -> U16Vec4

source§

fn zxzz(self) -> U16Vec4

source§

fn zyxx(self) -> U16Vec4

source§

fn zyxy(self) -> U16Vec4

source§

fn zyxz(self) -> U16Vec4

source§

fn zyyx(self) -> U16Vec4

source§

fn zyyy(self) -> U16Vec4

source§

fn zyyz(self) -> U16Vec4

source§

fn zyzx(self) -> U16Vec4

source§

fn zyzy(self) -> U16Vec4

source§

fn zyzz(self) -> U16Vec4

source§

fn zzxx(self) -> U16Vec4

source§

fn zzxy(self) -> U16Vec4

source§

fn zzxz(self) -> U16Vec4

source§

fn zzyx(self) -> U16Vec4

source§

fn zzyy(self) -> U16Vec4

source§

fn zzyz(self) -> U16Vec4

source§

fn zzzx(self) -> U16Vec4

source§

fn zzzy(self) -> U16Vec4

source§

fn zzzz(self) -> U16Vec4

source§

impl Zeroable for U16Vec3

source§

fn zeroed() -> Self

source§

impl Copy for U16Vec3

source§

impl Eq for U16Vec3

source§

impl Pod for U16Vec3

source§

impl StructuralPartialEq for U16Vec3

Auto Trait Implementations§

Blanket Implementations§

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> CheckedBitPattern for T
where 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.
source§

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> Downcast for T
where T: Any,

source§

fn into_any(self: Box<T>) -> Box<dyn Any>

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

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

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

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

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

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

source§

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

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

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

source§

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

Casts the type to dyn Any.
source§

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

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

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

source§

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

Casts the type to dyn Any.
source§

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

Feeds this value into the given Hasher.
source§

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

source§

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

Checks if this value is equivalent to the given key. Read more
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.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromWorld for T
where T: Default,

source§

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

Creates Self using data from the given World.
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 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.

source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

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

source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>

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> ToSmolStr for T
where T: Display + ?Sized,

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

impl<T> TypeData for T
where T: 'static + Send + Sync + Clone,

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

impl<T> AnyBitPattern for T
where T: Pod,

source§

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

source§

impl<T> NoUninit for T
where T: Pod,