Struct bevy_internal::math::i16::I16Vec4

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

A 4-dimensional vector.

Fields§

§x: i16§y: i16§z: i16§w: i16

Implementations§

source§

impl I16Vec4

source

pub const ZERO: I16Vec4 = _

All zeroes.

source

pub const ONE: I16Vec4 = _

All ones.

source

pub const NEG_ONE: I16Vec4 = _

All negative ones.

source

pub const MIN: I16Vec4 = _

All i16::MIN.

source

pub const MAX: I16Vec4 = _

All i16::MAX.

source

pub const X: I16Vec4 = _

A unit vector pointing along the positive X axis.

source

pub const Y: I16Vec4 = _

A unit vector pointing along the positive Y axis.

source

pub const Z: I16Vec4 = _

A unit vector pointing along the positive Z axis.

source

pub const W: I16Vec4 = _

A unit vector pointing along the positive W axis.

source

pub const NEG_X: I16Vec4 = _

A unit vector pointing along the negative X axis.

source

pub const NEG_Y: I16Vec4 = _

A unit vector pointing along the negative Y axis.

source

pub const NEG_Z: I16Vec4 = _

A unit vector pointing along the negative Z axis.

source

pub const NEG_W: I16Vec4 = _

A unit vector pointing along the negative W axis.

source

pub const AXES: [I16Vec4; 4] = _

The unit axes.

source

pub const fn new(x: i16, y: i16, z: i16, w: i16) -> I16Vec4

Creates a new vector.

source

pub const fn splat(v: i16) -> I16Vec4

Creates a vector with all elements set to v.

source

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

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: [i16; 4]) -> I16Vec4

Creates a new vector from an array.

source

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

[x, y, z, w]

source

pub const fn from_slice(slice: &[i16]) -> I16Vec4

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 [i16])

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) -> I16Vec3

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

Truncation to I16Vec3 may also be performed by using self.xyz().

source

pub fn dot(self, rhs: I16Vec4) -> i16

Computes the dot product of self and rhs.

source

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

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

source

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

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

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

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

Returns the horizontal minimum of self.

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

source

pub fn max_element(self) -> i16

Returns the horizontal maximum of self.

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

source

pub fn cmpeq(self, rhs: I16Vec4) -> 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: I16Vec4) -> 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: I16Vec4) -> 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: I16Vec4) -> 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: I16Vec4) -> 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: I16Vec4) -> 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 abs(self) -> I16Vec4

Returns a vector containing the absolute value of each element of self.

source

pub fn signum(self) -> I16Vec4

Returns a vector with elements representing the sign of self.

  • 0 if the number is zero
  • 1 if the number is positive
  • -1 if the number is negative
source

pub fn is_negative_bitmask(self) -> u32

Returns a bitmask with the lowest 4 bits set to the sign bits from the elements of self.

A negative element results in a 1 bit and a positive element in a 0 bit. Element x goes into the first lowest bit, element y into the second, etc.

source

pub fn length_squared(self) -> i16

Computes the squared length of self.

source

pub fn distance_squared(self, rhs: I16Vec4) -> i16

Compute the squared euclidean distance between two points in space.

source

pub fn div_euclid(self, rhs: I16Vec4) -> I16Vec4

Returns the element-wise quotient of [Euclidean division] of self by rhs.

§Panics

This function will panic if any rhs element is 0 or the division results in overflow.

source

pub fn rem_euclid(self, rhs: I16Vec4) -> I16Vec4

Returns the element-wise remainder of Euclidean division of self by rhs.

§Panics

This function will panic if any rhs element is 0 or the division results in overflow.

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_u16vec4(&self) -> U16Vec4

Casts all elements of self to u16.

source

pub fn as_ivec4(&self) -> IVec4

Casts all elements of self to i32.

source

pub fn as_uvec4(&self) -> UVec4

Casts all elements of self to u32.

source

pub fn as_i64vec4(&self) -> I64Vec4

Casts all elements of self to i64.

source

pub fn as_u64vec4(&self) -> U64Vec4

Casts all elements of self to u64.

source

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

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

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

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

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

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

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

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

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<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the + operator.
source§

fn add(self, rhs: i16) -> I16Vec4

Performs the + operation. Read more
source§

impl Add for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<i16> for I16Vec4

source§

fn add_assign(&mut self, rhs: i16)

Performs the += operation. Read more
source§

impl AddAssign for I16Vec4

source§

fn add_assign(&mut self, rhs: I16Vec4)

Performs the += operation. Read more
source§

impl AsMut<[i16; 4]> for I16Vec4

source§

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

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

impl AsRef<[i16; 4]> for I16Vec4

source§

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

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

impl BitAnd<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for I16Vec4

source§

fn clone(&self) -> I16Vec4

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 I16Vec4

source§

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

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

impl Default for I16Vec4

source§

fn default() -> I16Vec4

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

impl<'de> Deserialize<'de> for I16Vec4

source§

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

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

impl Display for I16Vec4

source§

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

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

impl Div<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the / operator.
source§

fn div(self, rhs: i16) -> I16Vec4

Performs the / operation. Read more
source§

impl Div for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<i16> for I16Vec4

source§

fn div_assign(&mut self, rhs: i16)

Performs the /= operation. Read more
source§

impl DivAssign for I16Vec4

source§

fn div_assign(&mut self, rhs: I16Vec4)

Performs the /= operation. Read more
source§

impl From<[i16; 4]> for I16Vec4

source§

fn from(a: [i16; 4]) -> I16Vec4

Converts to this type from the input type.
source§

impl From<(I16Vec2, I16Vec2)> for I16Vec4

source§

fn from(_: (I16Vec2, I16Vec2)) -> I16Vec4

Converts to this type from the input type.
source§

impl From<(I16Vec2, i16, i16)> for I16Vec4

source§

fn from(_: (I16Vec2, i16, i16)) -> I16Vec4

Converts to this type from the input type.
source§

impl From<(I16Vec3, i16)> for I16Vec4

source§

fn from(_: (I16Vec3, i16)) -> I16Vec4

Converts to this type from the input type.
source§

impl From<(i16, I16Vec3)> for I16Vec4

source§

fn from(_: (i16, I16Vec3)) -> I16Vec4

Converts to this type from the input type.
source§

impl From<(i16, i16, i16, i16)> for I16Vec4

source§

fn from(t: (i16, i16, i16, i16)) -> I16Vec4

Converts to this type from the input type.
source§

impl From<I16Vec4> for [i16; 4]

source§

fn from(v: I16Vec4) -> [i16; 4]

Converts to this type from the input type.
source§

impl From<I16Vec4> for (i16, i16, i16, i16)

source§

fn from(v: I16Vec4) -> (i16, i16, i16, i16)

Converts to this type from the input type.
source§

impl From<I16Vec4> for I64Vec4

source§

fn from(v: I16Vec4) -> I64Vec4

Converts to this type from the input type.
source§

impl From<I16Vec4> for IVec4

source§

fn from(v: I16Vec4) -> IVec4

Converts to this type from the input type.
source§

impl Hash for I16Vec4

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 I16Vec4

§

type Output = i16

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for I16Vec4

source§

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

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

impl Mul<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i16) -> I16Vec4

Performs the * operation. Read more
source§

impl Mul for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<i16> for I16Vec4

source§

fn mul_assign(&mut self, rhs: i16)

Performs the *= operation. Read more
source§

impl MulAssign for I16Vec4

source§

fn mul_assign(&mut self, rhs: I16Vec4)

Performs the *= operation. Read more
source§

impl Neg for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the - operator.
source§

fn neg(self) -> I16Vec4

Performs the unary - operation. Read more
source§

impl Not for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the ! operator.
source§

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

Performs the unary ! operation. Read more
source§

impl PartialEq for I16Vec4

source§

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

source§

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

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

impl Product for I16Vec4

source§

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

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

impl Rem<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i16) -> I16Vec4

Performs the % operation. Read more
source§

impl Rem for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<i16> for I16Vec4

source§

fn rem_assign(&mut self, rhs: i16)

Performs the %= operation. Read more
source§

impl RemAssign for I16Vec4

source§

fn rem_assign(&mut self, rhs: I16Vec4)

Performs the %= operation. Read more
source§

impl Serialize for I16Vec4

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<IVec4> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<UVec4> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<i16> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<i32> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<i64> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<i8> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<u16> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<u32> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<u64> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shl<u8> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the << operation. Read more
source§

impl Shr<IVec4> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<UVec4> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<i16> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<i32> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<i64> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<i8> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<u16> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<u32> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<u64> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Shr<u8> for I16Vec4

§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
source§

impl Sub<i16> for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i16) -> I16Vec4

Performs the - operation. Read more
source§

impl Sub for I16Vec4

§

type Output = I16Vec4

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<i16> for I16Vec4

source§

fn sub_assign(&mut self, rhs: i16)

Performs the -= operation. Read more
source§

impl SubAssign for I16Vec4

source§

fn sub_assign(&mut self, rhs: I16Vec4)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum for I16Vec4

source§

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

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

impl TryFrom<I16Vec4> for U16Vec4

§

type Error = TryFromIntError

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

fn try_from(v: I16Vec4) -> Result<U16Vec4, <U16Vec4 as TryFrom<I16Vec4>>::Error>

Performs the conversion.
source§

impl TryFrom<I16Vec4> for U64Vec4

§

type Error = TryFromIntError

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

fn try_from(v: I16Vec4) -> Result<U64Vec4, <U64Vec4 as TryFrom<I16Vec4>>::Error>

Performs the conversion.
source§

impl TryFrom<I16Vec4> for UVec4

§

type Error = TryFromIntError

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

fn try_from(v: I16Vec4) -> Result<UVec4, <UVec4 as TryFrom<I16Vec4>>::Error>

Performs the conversion.
source§

impl TryFrom<I64Vec4> for I16Vec4

§

type Error = TryFromIntError

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

fn try_from(v: I64Vec4) -> Result<I16Vec4, <I16Vec4 as TryFrom<I64Vec4>>::Error>

Performs the conversion.
source§

impl TryFrom<IVec4> for I16Vec4

§

type Error = TryFromIntError

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

fn try_from(v: IVec4) -> Result<I16Vec4, <I16Vec4 as TryFrom<IVec4>>::Error>

Performs the conversion.
source§

impl TryFrom<U16Vec4> for I16Vec4

§

type Error = TryFromIntError

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

fn try_from(v: U16Vec4) -> Result<I16Vec4, <I16Vec4 as TryFrom<U16Vec4>>::Error>

Performs the conversion.
source§

impl TryFrom<U64Vec4> for I16Vec4

§

type Error = TryFromIntError

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

fn try_from(v: U64Vec4) -> Result<I16Vec4, <I16Vec4 as TryFrom<U64Vec4>>::Error>

Performs the conversion.
source§

impl TryFrom<UVec4> for I16Vec4

§

type Error = TryFromIntError

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

fn try_from(v: UVec4) -> Result<I16Vec4, <I16Vec4 as TryFrom<UVec4>>::Error>

Performs the conversion.
source§

impl Vec4Swizzles for I16Vec4

§

type Vec2 = I16Vec2

§

type Vec3 = I16Vec3

source§

fn xx(self) -> I16Vec2

source§

fn xy(self) -> I16Vec2

source§

fn xz(self) -> I16Vec2

source§

fn xw(self) -> I16Vec2

source§

fn yx(self) -> I16Vec2

source§

fn yy(self) -> I16Vec2

source§

fn yz(self) -> I16Vec2

source§

fn yw(self) -> I16Vec2

source§

fn zx(self) -> I16Vec2

source§

fn zy(self) -> I16Vec2

source§

fn zz(self) -> I16Vec2

source§

fn zw(self) -> I16Vec2

source§

fn wx(self) -> I16Vec2

source§

fn wy(self) -> I16Vec2

source§

fn wz(self) -> I16Vec2

source§

fn ww(self) -> I16Vec2

source§

fn xxx(self) -> I16Vec3

source§

fn xxy(self) -> I16Vec3

source§

fn xxz(self) -> I16Vec3

source§

fn xxw(self) -> I16Vec3

source§

fn xyx(self) -> I16Vec3

source§

fn xyy(self) -> I16Vec3

source§

fn xyz(self) -> I16Vec3

source§

fn xyw(self) -> I16Vec3

source§

fn xzx(self) -> I16Vec3

source§

fn xzy(self) -> I16Vec3

source§

fn xzz(self) -> I16Vec3

source§

fn xzw(self) -> I16Vec3

source§

fn xwx(self) -> I16Vec3

source§

fn xwy(self) -> I16Vec3

source§

fn xwz(self) -> I16Vec3

source§

fn xww(self) -> I16Vec3

source§

fn yxx(self) -> I16Vec3

source§

fn yxy(self) -> I16Vec3

source§

fn yxz(self) -> I16Vec3

source§

fn yxw(self) -> I16Vec3

source§

fn yyx(self) -> I16Vec3

source§

fn yyy(self) -> I16Vec3

source§

fn yyz(self) -> I16Vec3

source§

fn yyw(self) -> I16Vec3

source§

fn yzx(self) -> I16Vec3

source§

fn yzy(self) -> I16Vec3

source§

fn yzz(self) -> I16Vec3

source§

fn yzw(self) -> I16Vec3

source§

fn ywx(self) -> I16Vec3

source§

fn ywy(self) -> I16Vec3

source§

fn ywz(self) -> I16Vec3

source§

fn yww(self) -> I16Vec3

source§

fn zxx(self) -> I16Vec3

source§

fn zxy(self) -> I16Vec3

source§

fn zxz(self) -> I16Vec3

source§

fn zxw(self) -> I16Vec3

source§

fn zyx(self) -> I16Vec3

source§

fn zyy(self) -> I16Vec3

source§

fn zyz(self) -> I16Vec3

source§

fn zyw(self) -> I16Vec3

source§

fn zzx(self) -> I16Vec3

source§

fn zzy(self) -> I16Vec3

source§

fn zzz(self) -> I16Vec3

source§

fn zzw(self) -> I16Vec3

source§

fn zwx(self) -> I16Vec3

source§

fn zwy(self) -> I16Vec3

source§

fn zwz(self) -> I16Vec3

source§

fn zww(self) -> I16Vec3

source§

fn wxx(self) -> I16Vec3

source§

fn wxy(self) -> I16Vec3

source§

fn wxz(self) -> I16Vec3

source§

fn wxw(self) -> I16Vec3

source§

fn wyx(self) -> I16Vec3

source§

fn wyy(self) -> I16Vec3

source§

fn wyz(self) -> I16Vec3

source§

fn wyw(self) -> I16Vec3

source§

fn wzx(self) -> I16Vec3

source§

fn wzy(self) -> I16Vec3

source§

fn wzz(self) -> I16Vec3

source§

fn wzw(self) -> I16Vec3

source§

fn wwx(self) -> I16Vec3

source§

fn wwy(self) -> I16Vec3

source§

fn wwz(self) -> I16Vec3

source§

fn www(self) -> I16Vec3

source§

fn xxxx(self) -> I16Vec4

source§

fn xxxy(self) -> I16Vec4

source§

fn xxxz(self) -> I16Vec4

source§

fn xxxw(self) -> I16Vec4

source§

fn xxyx(self) -> I16Vec4

source§

fn xxyy(self) -> I16Vec4

source§

fn xxyz(self) -> I16Vec4

source§

fn xxyw(self) -> I16Vec4

source§

fn xxzx(self) -> I16Vec4

source§

fn xxzy(self) -> I16Vec4

source§

fn xxzz(self) -> I16Vec4

source§

fn xxzw(self) -> I16Vec4

source§

fn xxwx(self) -> I16Vec4

source§

fn xxwy(self) -> I16Vec4

source§

fn xxwz(self) -> I16Vec4

source§

fn xxww(self) -> I16Vec4

source§

fn xyxx(self) -> I16Vec4

source§

fn xyxy(self) -> I16Vec4

source§

fn xyxz(self) -> I16Vec4

source§

fn xyxw(self) -> I16Vec4

source§

fn xyyx(self) -> I16Vec4

source§

fn xyyy(self) -> I16Vec4

source§

fn xyyz(self) -> I16Vec4

source§

fn xyyw(self) -> I16Vec4

source§

fn xyzx(self) -> I16Vec4

source§

fn xyzy(self) -> I16Vec4

source§

fn xyzz(self) -> I16Vec4

source§

fn xyzw(self) -> I16Vec4

source§

fn xywx(self) -> I16Vec4

source§

fn xywy(self) -> I16Vec4

source§

fn xywz(self) -> I16Vec4

source§

fn xyww(self) -> I16Vec4

source§

fn xzxx(self) -> I16Vec4

source§

fn xzxy(self) -> I16Vec4

source§

fn xzxz(self) -> I16Vec4

source§

fn xzxw(self) -> I16Vec4

source§

fn xzyx(self) -> I16Vec4

source§

fn xzyy(self) -> I16Vec4

source§

fn xzyz(self) -> I16Vec4

source§

fn xzyw(self) -> I16Vec4

source§

fn xzzx(self) -> I16Vec4

source§

fn xzzy(self) -> I16Vec4

source§

fn xzzz(self) -> I16Vec4

source§

fn xzzw(self) -> I16Vec4

source§

fn xzwx(self) -> I16Vec4

source§

fn xzwy(self) -> I16Vec4

source§

fn xzwz(self) -> I16Vec4

source§

fn xzww(self) -> I16Vec4

source§

fn xwxx(self) -> I16Vec4

source§

fn xwxy(self) -> I16Vec4

source§

fn xwxz(self) -> I16Vec4

source§

fn xwxw(self) -> I16Vec4

source§

fn xwyx(self) -> I16Vec4

source§

fn xwyy(self) -> I16Vec4

source§

fn xwyz(self) -> I16Vec4

source§

fn xwyw(self) -> I16Vec4

source§

fn xwzx(self) -> I16Vec4

source§

fn xwzy(self) -> I16Vec4

source§

fn xwzz(self) -> I16Vec4

source§

fn xwzw(self) -> I16Vec4

source§

fn xwwx(self) -> I16Vec4

source§

fn xwwy(self) -> I16Vec4

source§

fn xwwz(self) -> I16Vec4

source§

fn xwww(self) -> I16Vec4

source§

fn yxxx(self) -> I16Vec4

source§

fn yxxy(self) -> I16Vec4

source§

fn yxxz(self) -> I16Vec4

source§

fn yxxw(self) -> I16Vec4

source§

fn yxyx(self) -> I16Vec4

source§

fn yxyy(self) -> I16Vec4

source§

fn yxyz(self) -> I16Vec4

source§

fn yxyw(self) -> I16Vec4

source§

fn yxzx(self) -> I16Vec4

source§

fn yxzy(self) -> I16Vec4

source§

fn yxzz(self) -> I16Vec4

source§

fn yxzw(self) -> I16Vec4

source§

fn yxwx(self) -> I16Vec4

source§

fn yxwy(self) -> I16Vec4

source§

fn yxwz(self) -> I16Vec4

source§

fn yxww(self) -> I16Vec4

source§

fn yyxx(self) -> I16Vec4

source§

fn yyxy(self) -> I16Vec4

source§

fn yyxz(self) -> I16Vec4

source§

fn yyxw(self) -> I16Vec4

source§

fn yyyx(self) -> I16Vec4

source§

fn yyyy(self) -> I16Vec4

source§

fn yyyz(self) -> I16Vec4

source§

fn yyyw(self) -> I16Vec4

source§

fn yyzx(self) -> I16Vec4

source§

fn yyzy(self) -> I16Vec4

source§

fn yyzz(self) -> I16Vec4

source§

fn yyzw(self) -> I16Vec4

source§

fn yywx(self) -> I16Vec4

source§

fn yywy(self) -> I16Vec4

source§

fn yywz(self) -> I16Vec4

source§

fn yyww(self) -> I16Vec4

source§

fn yzxx(self) -> I16Vec4

source§

fn yzxy(self) -> I16Vec4

source§

fn yzxz(self) -> I16Vec4

source§

fn yzxw(self) -> I16Vec4

source§

fn yzyx(self) -> I16Vec4

source§

fn yzyy(self) -> I16Vec4

source§

fn yzyz(self) -> I16Vec4

source§

fn yzyw(self) -> I16Vec4

source§

fn yzzx(self) -> I16Vec4

source§

fn yzzy(self) -> I16Vec4

source§

fn yzzz(self) -> I16Vec4

source§

fn yzzw(self) -> I16Vec4

source§

fn yzwx(self) -> I16Vec4

source§

fn yzwy(self) -> I16Vec4

source§

fn yzwz(self) -> I16Vec4

source§

fn yzww(self) -> I16Vec4

source§

fn ywxx(self) -> I16Vec4

source§

fn ywxy(self) -> I16Vec4

source§

fn ywxz(self) -> I16Vec4

source§

fn ywxw(self) -> I16Vec4

source§

fn ywyx(self) -> I16Vec4

source§

fn ywyy(self) -> I16Vec4

source§

fn ywyz(self) -> I16Vec4

source§

fn ywyw(self) -> I16Vec4

source§

fn ywzx(self) -> I16Vec4

source§

fn ywzy(self) -> I16Vec4

source§

fn ywzz(self) -> I16Vec4

source§

fn ywzw(self) -> I16Vec4

source§

fn ywwx(self) -> I16Vec4

source§

fn ywwy(self) -> I16Vec4

source§

fn ywwz(self) -> I16Vec4

source§

fn ywww(self) -> I16Vec4

source§

fn zxxx(self) -> I16Vec4

source§

fn zxxy(self) -> I16Vec4

source§

fn zxxz(self) -> I16Vec4

source§

fn zxxw(self) -> I16Vec4

source§

fn zxyx(self) -> I16Vec4

source§

fn zxyy(self) -> I16Vec4

source§

fn zxyz(self) -> I16Vec4

source§

fn zxyw(self) -> I16Vec4

source§

fn zxzx(self) -> I16Vec4

source§

fn zxzy(self) -> I16Vec4

source§

fn zxzz(self) -> I16Vec4

source§

fn zxzw(self) -> I16Vec4

source§

fn zxwx(self) -> I16Vec4

source§

fn zxwy(self) -> I16Vec4

source§

fn zxwz(self) -> I16Vec4

source§

fn zxww(self) -> I16Vec4

source§

fn zyxx(self) -> I16Vec4

source§

fn zyxy(self) -> I16Vec4

source§

fn zyxz(self) -> I16Vec4

source§

fn zyxw(self) -> I16Vec4

source§

fn zyyx(self) -> I16Vec4

source§

fn zyyy(self) -> I16Vec4

source§

fn zyyz(self) -> I16Vec4

source§

fn zyyw(self) -> I16Vec4

source§

fn zyzx(self) -> I16Vec4

source§

fn zyzy(self) -> I16Vec4

source§

fn zyzz(self) -> I16Vec4

source§

fn zyzw(self) -> I16Vec4

source§

fn zywx(self) -> I16Vec4

source§

fn zywy(self) -> I16Vec4

source§

fn zywz(self) -> I16Vec4

source§

fn zyww(self) -> I16Vec4

source§

fn zzxx(self) -> I16Vec4

source§

fn zzxy(self) -> I16Vec4

source§

fn zzxz(self) -> I16Vec4

source§

fn zzxw(self) -> I16Vec4

source§

fn zzyx(self) -> I16Vec4

source§

fn zzyy(self) -> I16Vec4

source§

fn zzyz(self) -> I16Vec4

source§

fn zzyw(self) -> I16Vec4

source§

fn zzzx(self) -> I16Vec4

source§

fn zzzy(self) -> I16Vec4

source§

fn zzzz(self) -> I16Vec4

source§

fn zzzw(self) -> I16Vec4

source§

fn zzwx(self) -> I16Vec4

source§

fn zzwy(self) -> I16Vec4

source§

fn zzwz(self) -> I16Vec4

source§

fn zzww(self) -> I16Vec4

source§

fn zwxx(self) -> I16Vec4

source§

fn zwxy(self) -> I16Vec4

source§

fn zwxz(self) -> I16Vec4

source§

fn zwxw(self) -> I16Vec4

source§

fn zwyx(self) -> I16Vec4

source§

fn zwyy(self) -> I16Vec4

source§

fn zwyz(self) -> I16Vec4

source§

fn zwyw(self) -> I16Vec4

source§

fn zwzx(self) -> I16Vec4

source§

fn zwzy(self) -> I16Vec4

source§

fn zwzz(self) -> I16Vec4

source§

fn zwzw(self) -> I16Vec4

source§

fn zwwx(self) -> I16Vec4

source§

fn zwwy(self) -> I16Vec4

source§

fn zwwz(self) -> I16Vec4

source§

fn zwww(self) -> I16Vec4

source§

fn wxxx(self) -> I16Vec4

source§

fn wxxy(self) -> I16Vec4

source§

fn wxxz(self) -> I16Vec4

source§

fn wxxw(self) -> I16Vec4

source§

fn wxyx(self) -> I16Vec4

source§

fn wxyy(self) -> I16Vec4

source§

fn wxyz(self) -> I16Vec4

source§

fn wxyw(self) -> I16Vec4

source§

fn wxzx(self) -> I16Vec4

source§

fn wxzy(self) -> I16Vec4

source§

fn wxzz(self) -> I16Vec4

source§

fn wxzw(self) -> I16Vec4

source§

fn wxwx(self) -> I16Vec4

source§

fn wxwy(self) -> I16Vec4

source§

fn wxwz(self) -> I16Vec4

source§

fn wxww(self) -> I16Vec4

source§

fn wyxx(self) -> I16Vec4

source§

fn wyxy(self) -> I16Vec4

source§

fn wyxz(self) -> I16Vec4

source§

fn wyxw(self) -> I16Vec4

source§

fn wyyx(self) -> I16Vec4

source§

fn wyyy(self) -> I16Vec4

source§

fn wyyz(self) -> I16Vec4

source§

fn wyyw(self) -> I16Vec4

source§

fn wyzx(self) -> I16Vec4

source§

fn wyzy(self) -> I16Vec4

source§

fn wyzz(self) -> I16Vec4

source§

fn wyzw(self) -> I16Vec4

source§

fn wywx(self) -> I16Vec4

source§

fn wywy(self) -> I16Vec4

source§

fn wywz(self) -> I16Vec4

source§

fn wyww(self) -> I16Vec4

source§

fn wzxx(self) -> I16Vec4

source§

fn wzxy(self) -> I16Vec4

source§

fn wzxz(self) -> I16Vec4

source§

fn wzxw(self) -> I16Vec4

source§

fn wzyx(self) -> I16Vec4

source§

fn wzyy(self) -> I16Vec4

source§

fn wzyz(self) -> I16Vec4

source§

fn wzyw(self) -> I16Vec4

source§

fn wzzx(self) -> I16Vec4

source§

fn wzzy(self) -> I16Vec4

source§

fn wzzz(self) -> I16Vec4

source§

fn wzzw(self) -> I16Vec4

source§

fn wzwx(self) -> I16Vec4

source§

fn wzwy(self) -> I16Vec4

source§

fn wzwz(self) -> I16Vec4

source§

fn wzww(self) -> I16Vec4

source§

fn wwxx(self) -> I16Vec4

source§

fn wwxy(self) -> I16Vec4

source§

fn wwxz(self) -> I16Vec4

source§

fn wwxw(self) -> I16Vec4

source§

fn wwyx(self) -> I16Vec4

source§

fn wwyy(self) -> I16Vec4

source§

fn wwyz(self) -> I16Vec4

source§

fn wwyw(self) -> I16Vec4

source§

fn wwzx(self) -> I16Vec4

source§

fn wwzy(self) -> I16Vec4

source§

fn wwzz(self) -> I16Vec4

source§

fn wwzw(self) -> I16Vec4

source§

fn wwwx(self) -> I16Vec4

source§

fn wwwy(self) -> I16Vec4

source§

fn wwwz(self) -> I16Vec4

source§

fn wwww(self) -> I16Vec4

source§

impl Zeroable for I16Vec4

source§

fn zeroed() -> Self

source§

impl Copy for I16Vec4

source§

impl Eq for I16Vec4

source§

impl Pod for I16Vec4

source§

impl StructuralPartialEq for I16Vec4

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,