#[repr(C)]
pub struct I64Vec3 { pub x: i64, pub y: i64, pub z: i64, }
Expand description

A 3-dimensional vector.

Fields§

§x: i64§y: i64§z: i64

Implementations§

source§

impl I64Vec3

source

pub const ZERO: I64Vec3 = _

All zeroes.

source

pub const ONE: I64Vec3 = _

All ones.

source

pub const NEG_ONE: I64Vec3 = _

All negative ones.

source

pub const MIN: I64Vec3 = _

All i64::MIN.

source

pub const MAX: I64Vec3 = _

All i64::MAX.

source

pub const X: I64Vec3 = _

A unit vector pointing along the positive X axis.

source

pub const Y: I64Vec3 = _

A unit vector pointing along the positive Y axis.

source

pub const Z: I64Vec3 = _

A unit vector pointing along the positive Z axis.

source

pub const NEG_X: I64Vec3 = _

A unit vector pointing along the negative X axis.

source

pub const NEG_Y: I64Vec3 = _

A unit vector pointing along the negative Y axis.

source

pub const NEG_Z: I64Vec3 = _

A unit vector pointing along the negative Z axis.

source

pub const AXES: [I64Vec3; 3] = _

The unit axes.

source

pub const fn new(x: i64, y: i64, z: i64) -> I64Vec3

Creates a new vector.

source

pub const fn splat(v: i64) -> I64Vec3

Creates a vector with all elements set to v.

source

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

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: [i64; 3]) -> I64Vec3

Creates a new vector from an array.

source

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

[x, y, z]

source

pub const fn from_slice(slice: &[i64]) -> I64Vec3

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

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: i64) -> I64Vec4

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

source

pub fn truncate(self) -> I64Vec2

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: I64Vec3) -> i64

Computes the dot product of self and rhs.

source

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

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

source

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

Computes the cross product of self and rhs.

source

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

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

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

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

Returns the horizontal minimum of self.

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

source

pub fn max_element(self) -> i64

Returns the horizontal maximum of self.

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

source

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

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

source

pub fn signum(self) -> I64Vec3

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 3 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) -> i64

Computes the squared length of self.

source

pub fn distance_squared(self, rhs: I64Vec3) -> i64

Compute the squared euclidean distance between two points in space.

source

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

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

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_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_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_u64vec3(&self) -> U64Vec3

Casts all elements of self to u64.

source

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

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

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

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

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

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

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

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

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<I64Vec3> for i64

§

type Output = I64Vec3

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the + operator.
source§

fn add(self, rhs: i64) -> I64Vec3

Performs the + operation. Read more
source§

impl Add for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<i64> for I64Vec3

source§

fn add_assign(&mut self, rhs: i64)

Performs the += operation. Read more
source§

impl AddAssign for I64Vec3

source§

fn add_assign(&mut self, rhs: I64Vec3)

Performs the += operation. Read more
source§

impl AsMut<[i64; 3]> for I64Vec3

source§

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

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

impl AsRef<[i64; 3]> for I64Vec3

source§

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

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

impl BitAnd<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for I64Vec3

source§

fn clone(&self) -> I64Vec3

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 I64Vec3

source§

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

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

impl Default for I64Vec3

source§

fn default() -> I64Vec3

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

impl<'de> Deserialize<'de> for I64Vec3

source§

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

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

impl Display for I64Vec3

source§

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

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

impl Div<I64Vec3> for i64

§

type Output = I64Vec3

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the / operator.
source§

fn div(self, rhs: i64) -> I64Vec3

Performs the / operation. Read more
source§

impl Div for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<i64> for I64Vec3

source§

fn div_assign(&mut self, rhs: i64)

Performs the /= operation. Read more
source§

impl DivAssign for I64Vec3

source§

fn div_assign(&mut self, rhs: I64Vec3)

Performs the /= operation. Read more
source§

impl From<[i64; 3]> for I64Vec3

source§

fn from(a: [i64; 3]) -> I64Vec3

Converts to this type from the input type.
source§

impl From<(I64Vec2, i64)> for I64Vec3

source§

fn from(_: (I64Vec2, i64)) -> I64Vec3

Converts to this type from the input type.
source§

impl From<(i64, i64, i64)> for I64Vec3

source§

fn from(t: (i64, i64, i64)) -> I64Vec3

Converts to this type from the input type.
source§

impl From<I64Vec3> for [i64; 3]

source§

fn from(v: I64Vec3) -> [i64; 3]

Converts to this type from the input type.
source§

impl From<IVec3> for I64Vec3

source§

fn from(v: IVec3) -> I64Vec3

Converts to this type from the input type.
source§

impl Hash for I64Vec3

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 I64Vec3

§

type Output = i64

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for I64Vec3

source§

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

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

impl Mul<I64Vec3> for i64

§

type Output = I64Vec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: i64) -> I64Vec3

Performs the * operation. Read more
source§

impl Mul for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<i64> for I64Vec3

source§

fn mul_assign(&mut self, rhs: i64)

Performs the *= operation. Read more
source§

impl MulAssign for I64Vec3

source§

fn mul_assign(&mut self, rhs: I64Vec3)

Performs the *= operation. Read more
source§

impl Neg for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the - operator.
source§

fn neg(self) -> I64Vec3

Performs the unary - operation. Read more
source§

impl Not for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the ! operator.
source§

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

Performs the unary ! operation. Read more
source§

impl PartialEq for I64Vec3

source§

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

source§

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

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

impl Product for I64Vec3

source§

fn product<I>(iter: I) -> I64Vec3where I: Iterator<Item = I64Vec3>,

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

impl Rem<I64Vec3> for i64

§

type Output = I64Vec3

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the % operator.
source§

fn rem(self, rhs: i64) -> I64Vec3

Performs the % operation. Read more
source§

impl Rem for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<i64> for I64Vec3

source§

fn rem_assign(&mut self, rhs: i64)

Performs the %= operation. Read more
source§

impl RemAssign for I64Vec3

source§

fn rem_assign(&mut self, rhs: I64Vec3)

Performs the %= operation. Read more
source§

impl Serialize for I64Vec3

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 I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<UVec3> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i16> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i32> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i64> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<i8> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u16> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u32> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u64> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shl<u8> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the << operation. Read more
source§

impl Shr<IVec3> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<UVec3> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i16> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i32> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i64> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<i8> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u16> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u32> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u64> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Shr<u8> for I64Vec3

§

type Output = I64Vec3

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

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

Performs the >> operation. Read more
source§

impl Sub<I64Vec3> for i64

§

type Output = I64Vec3

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub<i64> for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the - operator.
source§

fn sub(self, rhs: i64) -> I64Vec3

Performs the - operation. Read more
source§

impl Sub for I64Vec3

§

type Output = I64Vec3

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<i64> for I64Vec3

source§

fn sub_assign(&mut self, rhs: i64)

Performs the -= operation. Read more
source§

impl SubAssign for I64Vec3

source§

fn sub_assign(&mut self, rhs: I64Vec3)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum for I64Vec3

source§

fn sum<I>(iter: I) -> I64Vec3where I: Iterator<Item = I64Vec3>,

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

impl TryFrom<I64Vec3> for IVec3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<I64Vec3> for U64Vec3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<I64Vec3> for UVec3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl TryFrom<U64Vec3> for I64Vec3

§

type Error = TryFromIntError

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

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

Performs the conversion.
source§

impl Vec3Swizzles for I64Vec3

§

type Vec2 = I64Vec2

§

type Vec4 = I64Vec4

source§

fn xx(self) -> I64Vec2

source§

fn xy(self) -> I64Vec2

source§

fn xz(self) -> I64Vec2

source§

fn yx(self) -> I64Vec2

source§

fn yy(self) -> I64Vec2

source§

fn yz(self) -> I64Vec2

source§

fn zx(self) -> I64Vec2

source§

fn zy(self) -> I64Vec2

source§

fn zz(self) -> I64Vec2

source§

fn xxx(self) -> I64Vec3

source§

fn xxy(self) -> I64Vec3

source§

fn xxz(self) -> I64Vec3

source§

fn xyx(self) -> I64Vec3

source§

fn xyy(self) -> I64Vec3

source§

fn xyz(self) -> I64Vec3

source§

fn xzx(self) -> I64Vec3

source§

fn xzy(self) -> I64Vec3

source§

fn xzz(self) -> I64Vec3

source§

fn yxx(self) -> I64Vec3

source§

fn yxy(self) -> I64Vec3

source§

fn yxz(self) -> I64Vec3

source§

fn yyx(self) -> I64Vec3

source§

fn yyy(self) -> I64Vec3

source§

fn yyz(self) -> I64Vec3

source§

fn yzx(self) -> I64Vec3

source§

fn yzy(self) -> I64Vec3

source§

fn yzz(self) -> I64Vec3

source§

fn zxx(self) -> I64Vec3

source§

fn zxy(self) -> I64Vec3

source§

fn zxz(self) -> I64Vec3

source§

fn zyx(self) -> I64Vec3

source§

fn zyy(self) -> I64Vec3

source§

fn zyz(self) -> I64Vec3

source§

fn zzx(self) -> I64Vec3

source§

fn zzy(self) -> I64Vec3

source§

fn zzz(self) -> I64Vec3

source§

fn xxxx(self) -> I64Vec4

source§

fn xxxy(self) -> I64Vec4

source§

fn xxxz(self) -> I64Vec4

source§

fn xxyx(self) -> I64Vec4

source§

fn xxyy(self) -> I64Vec4

source§

fn xxyz(self) -> I64Vec4

source§

fn xxzx(self) -> I64Vec4

source§

fn xxzy(self) -> I64Vec4

source§

fn xxzz(self) -> I64Vec4

source§

fn xyxx(self) -> I64Vec4

source§

fn xyxy(self) -> I64Vec4

source§

fn xyxz(self) -> I64Vec4

source§

fn xyyx(self) -> I64Vec4

source§

fn xyyy(self) -> I64Vec4

source§

fn xyyz(self) -> I64Vec4

source§

fn xyzx(self) -> I64Vec4

source§

fn xyzy(self) -> I64Vec4

source§

fn xyzz(self) -> I64Vec4

source§

fn xzxx(self) -> I64Vec4

source§

fn xzxy(self) -> I64Vec4

source§

fn xzxz(self) -> I64Vec4

source§

fn xzyx(self) -> I64Vec4

source§

fn xzyy(self) -> I64Vec4

source§

fn xzyz(self) -> I64Vec4

source§

fn xzzx(self) -> I64Vec4

source§

fn xzzy(self) -> I64Vec4

source§

fn xzzz(self) -> I64Vec4

source§

fn yxxx(self) -> I64Vec4

source§

fn yxxy(self) -> I64Vec4

source§

fn yxxz(self) -> I64Vec4

source§

fn yxyx(self) -> I64Vec4

source§

fn yxyy(self) -> I64Vec4

source§

fn yxyz(self) -> I64Vec4

source§

fn yxzx(self) -> I64Vec4

source§

fn yxzy(self) -> I64Vec4

source§

fn yxzz(self) -> I64Vec4

source§

fn yyxx(self) -> I64Vec4

source§

fn yyxy(self) -> I64Vec4

source§

fn yyxz(self) -> I64Vec4

source§

fn yyyx(self) -> I64Vec4

source§

fn yyyy(self) -> I64Vec4

source§

fn yyyz(self) -> I64Vec4

source§

fn yyzx(self) -> I64Vec4

source§

fn yyzy(self) -> I64Vec4

source§

fn yyzz(self) -> I64Vec4

source§

fn yzxx(self) -> I64Vec4

source§

fn yzxy(self) -> I64Vec4

source§

fn yzxz(self) -> I64Vec4

source§

fn yzyx(self) -> I64Vec4

source§

fn yzyy(self) -> I64Vec4

source§

fn yzyz(self) -> I64Vec4

source§

fn yzzx(self) -> I64Vec4

source§

fn yzzy(self) -> I64Vec4

source§

fn yzzz(self) -> I64Vec4

source§

fn zxxx(self) -> I64Vec4

source§

fn zxxy(self) -> I64Vec4

source§

fn zxxz(self) -> I64Vec4

source§

fn zxyx(self) -> I64Vec4

source§

fn zxyy(self) -> I64Vec4

source§

fn zxyz(self) -> I64Vec4

source§

fn zxzx(self) -> I64Vec4

source§

fn zxzy(self) -> I64Vec4

source§

fn zxzz(self) -> I64Vec4

source§

fn zyxx(self) -> I64Vec4

source§

fn zyxy(self) -> I64Vec4

source§

fn zyxz(self) -> I64Vec4

source§

fn zyyx(self) -> I64Vec4

source§

fn zyyy(self) -> I64Vec4

source§

fn zyyz(self) -> I64Vec4

source§

fn zyzx(self) -> I64Vec4

source§

fn zyzy(self) -> I64Vec4

source§

fn zyzz(self) -> I64Vec4

source§

fn zzxx(self) -> I64Vec4

source§

fn zzxy(self) -> I64Vec4

source§

fn zzxz(self) -> I64Vec4

source§

fn zzyx(self) -> I64Vec4

source§

fn zzyy(self) -> I64Vec4

source§

fn zzyz(self) -> I64Vec4

source§

fn zzzx(self) -> I64Vec4

source§

fn zzzy(self) -> I64Vec4

source§

fn zzzz(self) -> I64Vec4

source§

impl Zeroable for I64Vec3

§

fn zeroed() -> Self

source§

impl Copy for I64Vec3

source§

impl Eq for I64Vec3

source§

impl Pod for I64Vec3

source§

impl StructuralEq for I64Vec3

source§

impl StructuralPartialEq for I64Vec3

Auto Trait Implementations§

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> AnyEq for Twhere T: Any + PartialEq,

§

fn equals(&self, other: &(dyn Any + 'static)) -> bool

§

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

§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

type Bits = T

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

fn is_valid_bit_pattern(_bits: &T) -> bool

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

impl<T> Conv for T

§

fn conv<T>(self) -> Twhere Self: Into<T>,

Converts self into T using Into<T>. Read more
§

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

§

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

§

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

§

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

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

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

§

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

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

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

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: &World) -> T

Creates Self using data from the given World.
§

impl<T> Instrument for T

§

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

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

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>,

source§

fn into(self) -> U

Calls U::from(self).

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

§

impl<F, T> IntoSample<T> for Fwhere T: FromSample<F>,

§

fn into_sample(self) -> T

§

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

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> Rwhere Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> Rwhere Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
§

impl<T> RawClone for Twhere T: Clone,

§

unsafe fn raw_clone(src: *const c_void, dst: *mut c_void)

Write the default value of the type to the pointer. Read more
§

fn raw_clone_cb( ) -> Unsafe<&'static (dyn Fn(*const c_void, *mut c_void) + Send + Sync)>

Get a callback suitable for [SchemaData].
§

impl<T> RawDefault for Twhere T: Default,

§

unsafe fn raw_default(dst: *mut c_void)

Write the default value of the type to the pointer. Read more
§

fn raw_default_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Send + Sync)>

Get a callback suitable for [SchemaData].
§

impl<T> RawDrop for T

§

unsafe fn raw_drop(ptr: *mut c_void)

Write the default value of the type to the pointer. Read more
§

fn raw_drop_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Send + Sync)>

Get a callback suitable for [SchemaData].
§

impl<T> RawEq for Twhere T: Eq,

§

unsafe fn raw_eq(a: *const c_void, b: *const c_void) -> bool

Get the hash of the type. Read more
§

fn raw_eq_cb( ) -> Unsafe<&'static (dyn Fn(*const c_void, *const c_void) -> bool + Send + Sync)>

Get a callback suitable for [SchemaData].
§

impl<T> RawHash for Twhere T: Hash,

§

unsafe fn raw_hash(ptr: *const c_void) -> u64

Get the hash of the type. Read more
§

fn raw_hash_cb( ) -> Unsafe<&'static (dyn Fn(*const c_void) -> u64 + Send + Sync)>

Get a callback suitable for [SchemaData].
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> Serialize for Twhere 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>

§

impl<'gc, T> Singleton<'gc> for Twhere T: Default,

§

fn create(_: Context<'gc>) -> T

§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
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<Q> ToOwnedEquivalent<<Q as ToOwned>::Owned> for Qwhere Q: ToOwned + Eq + ?Sized,

§

fn to_owned_equivalent(&self) -> <Q as ToOwned>::Owned

§

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
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. 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.
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.
source§

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

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

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> DenseInput for Twhere T: Pod + Zeroable + Copy + Clone + PartialEq + Eq + Send + Sync,

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> 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>,

§

impl<T> SerializableAny for Twhere T: 'static + Any + Clone + for<'a> Send + Sync,