IVec3

Struct IVec3 

Source
#[repr(C)]
pub struct IVec3 { pub x: i32, pub y: i32, pub z: i32, }
Expand description

A 3-dimensional vector.

Fields§

§x: i32§y: i32§z: i32

Implementations§

Source§

impl IVec3

Source

pub const ZERO: IVec3

All zeroes.

Source

pub const ONE: IVec3

All ones.

Source

pub const NEG_ONE: IVec3

All negative ones.

Source

pub const MIN: IVec3

All i32::MIN.

Source

pub const MAX: IVec3

All i32::MAX.

Source

pub const X: IVec3

A unit vector pointing along the positive X axis.

Source

pub const Y: IVec3

A unit vector pointing along the positive Y axis.

Source

pub const Z: IVec3

A unit vector pointing along the positive Z axis.

Source

pub const NEG_X: IVec3

A unit vector pointing along the negative X axis.

Source

pub const NEG_Y: IVec3

A unit vector pointing along the negative Y axis.

Source

pub const NEG_Z: IVec3

A unit vector pointing along the negative Z axis.

Source

pub const AXES: [IVec3; 3]

The unit axes.

Source

pub const fn new(x: i32, y: i32, z: i32) -> IVec3

Creates a new vector.

Source

pub const fn splat(v: i32) -> IVec3

Creates a vector with all elements set to v.

Source

pub fn map<F>(self, f: F) -> IVec3
where F: Fn(i32) -> i32,

Returns a vector containing each element of self modified by a mapping function f.

Source

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

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: [i32; 3]) -> IVec3

Creates a new vector from an array.

Source

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

[x, y, z]

Source

pub const fn from_slice(slice: &[i32]) -> IVec3

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

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: i32) -> IVec4

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

Source

pub fn truncate(self) -> IVec2

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 with_x(self, x: i32) -> IVec3

Creates a 3D vector from self with the given value of x.

Source

pub fn with_y(self, y: i32) -> IVec3

Creates a 3D vector from self with the given value of y.

Source

pub fn with_z(self, z: i32) -> IVec3

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

Source

pub fn dot(self, rhs: IVec3) -> i32

Computes the dot product of self and rhs.

Source

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

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

Source

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

Computes the cross product of self and rhs.

Source

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

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

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

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

Returns the horizontal minimum of self.

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

Source

pub fn max_element(self) -> i32

Returns the horizontal maximum of self.

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

Source

pub fn element_sum(self) -> i32

Returns the sum of all elements of self.

In other words, this computes self.x + self.y + ...

Source

pub fn element_product(self) -> i32

Returns the product of all elements of self.

In other words, this computes self.x * self.y * ...

Source

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

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

Source

pub fn signum(self) -> IVec3

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

Computes the squared length of self.

Source

pub fn distance_squared(self, rhs: IVec3) -> i32

Compute the squared euclidean distance between two points in space.

Source

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

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

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_i8vec3(&self) -> I8Vec3

Casts all elements of self to i8.

Source

pub fn as_u8vec3(&self) -> U8Vec3

Casts all elements of self to u8.

Source

pub fn as_i16vec3(&self) -> I16Vec3

Casts all elements of self to i16.

Source

pub fn as_u16vec3(&self) -> U16Vec3

Casts all elements of self to u16.

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

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

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

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

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

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

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

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

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), ..].

Source

pub const fn wrapping_add_unsigned(self, rhs: UVec3) -> IVec3

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

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

Source

pub const fn wrapping_sub_unsigned(self, rhs: UVec3) -> IVec3

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

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

Source

pub const fn saturating_add_unsigned(self, rhs: UVec3) -> IVec3

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

Source

pub const fn saturating_sub_unsigned(self, rhs: UVec3) -> IVec3

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

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

Trait Implementations§

Source§

impl Add<&IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IVec3) -> IVec3

Performs the + operation. Read more
Source§

impl Add<&IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IVec3) -> IVec3

Performs the + operation. Read more
Source§

impl Add<&IVec3> for IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IVec3) -> IVec3

Performs the + operation. Read more
Source§

impl Add<&IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &IVec3) -> IVec3

Performs the + operation. Read more
Source§

impl Add<&i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i32) -> IVec3

Performs the + operation. Read more
Source§

impl Add<&i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &i32) -> IVec3

Performs the + operation. Read more
Source§

impl Add<IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i32) -> IVec3

Performs the + operation. Read more
Source§

impl Add<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i32) -> IVec3

Performs the + operation. Read more
Source§

impl Add for IVec3

Source§

type Output = IVec3

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl AddAssign<&IVec3> for IVec3

Source§

fn add_assign(&mut self, rhs: &IVec3)

Performs the += operation. Read more
Source§

impl AddAssign<&i32> for IVec3

Source§

fn add_assign(&mut self, rhs: &i32)

Performs the += operation. Read more
Source§

impl AddAssign<i32> for IVec3

Source§

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
Source§

impl AddAssign for IVec3

Source§

fn add_assign(&mut self, rhs: IVec3)

Performs the += operation. Read more
Source§

impl AsMut<[i32; 3]> for IVec3

Available on non-target_arch=spirv only.
Source§

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

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

impl AsRef<[i32; 3]> for IVec3

Available on non-target_arch=spirv only.
Source§

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

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

impl AsStd140 for IVec3

Source§

type Output = <Vector3<i32> as AsStd140>::Output

The std140 version of this value.
Source§

fn as_std140(&self) -> <IVec3 as AsStd140>::Output

Convert this value into the std140 version of itself.
Source§

fn from_std140(value: <IVec3 as AsStd140>::Output) -> IVec3

Converts from std140 version of self to self.
Source§

fn std140_size_static() -> usize

Returns the size of the std140 version of this type. Useful for pre-sizing buffers.
Source§

impl AsStd430 for IVec3

Source§

type Output = <Vector3<i32> as AsStd430>::Output

The std430 version of this value.
Source§

fn as_std430(&self) -> <IVec3 as AsStd430>::Output

Convert this value into the std430 version of itself.
Source§

fn from_std430(value: <IVec3 as AsStd430>::Output) -> IVec3

Converts from std430 version of self to self.
Source§

fn std430_size_static() -> usize

Returns the size of the std430 version of this type. Useful for pre-sizing buffers.
Source§

impl BitAnd<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd for IVec3

Source§

type Output = IVec3

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitOr<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr for IVec3

Source§

type Output = IVec3

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitXor<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor for IVec3

Source§

type Output = IVec3

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl Clone for IVec3

Source§

fn clone(&self) -> IVec3

Returns a duplicate 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 IVec3

Source§

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

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

impl Default for IVec3

Source§

fn default() -> IVec3

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

impl Display for IVec3

Source§

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

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

impl Div<&IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IVec3) -> IVec3

Performs the / operation. Read more
Source§

impl Div<&IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IVec3) -> IVec3

Performs the / operation. Read more
Source§

impl Div<&IVec3> for IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IVec3) -> IVec3

Performs the / operation. Read more
Source§

impl Div<&IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &IVec3) -> IVec3

Performs the / operation. Read more
Source§

impl Div<&i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i32) -> IVec3

Performs the / operation. Read more
Source§

impl Div<&i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &i32) -> IVec3

Performs the / operation. Read more
Source§

impl Div<IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i32) -> IVec3

Performs the / operation. Read more
Source§

impl Div<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i32) -> IVec3

Performs the / operation. Read more
Source§

impl Div for IVec3

Source§

type Output = IVec3

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl DivAssign<&IVec3> for IVec3

Source§

fn div_assign(&mut self, rhs: &IVec3)

Performs the /= operation. Read more
Source§

impl DivAssign<&i32> for IVec3

Source§

fn div_assign(&mut self, rhs: &i32)

Performs the /= operation. Read more
Source§

impl DivAssign<i32> for IVec3

Source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
Source§

impl DivAssign for IVec3

Source§

fn div_assign(&mut self, rhs: IVec3)

Performs the /= operation. Read more
Source§

impl From<[i32; 3]> for IVec3

Source§

fn from(a: [i32; 3]) -> IVec3

Converts to this type from the input type.
Source§

impl From<(IVec2, i32)> for IVec3

Source§

fn from(_: (IVec2, i32)) -> IVec3

Converts to this type from the input type.
Source§

impl From<(i32, i32, i32)> for IVec3

Source§

fn from(t: (i32, i32, i32)) -> IVec3

Converts to this type from the input type.
Source§

impl From<BVec3> for IVec3

Source§

fn from(v: BVec3) -> IVec3

Converts to this type from the input type.
Source§

impl From<BVec3A> for IVec3

Source§

fn from(v: BVec3A) -> IVec3

Converts to this type from the input type.
Source§

impl From<I16Vec3> for IVec3

Source§

fn from(v: I16Vec3) -> IVec3

Converts to this type from the input type.
Source§

impl From<I8Vec3> for IVec3

Source§

fn from(v: I8Vec3) -> IVec3

Converts to this type from the input type.
Source§

impl From<IVec3> for [i32; 3]

Source§

fn from(v: IVec3) -> [i32; 3]

Converts to this type from the input type.
Source§

impl From<IVec3> for (i32, i32, i32)

Source§

fn from(v: IVec3) -> (i32, i32, i32)

Converts to this type from the input type.
Source§

impl From<IVec3> for DVec3

Source§

fn from(v: IVec3) -> DVec3

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 From<IVec3> for Point3<i32>

Source§

fn from(v: IVec3) -> Point3<i32>

Converts to this type from the input type.
Source§

impl From<IVec3> for Vector3<i32>

Source§

fn from(v: IVec3) -> Vector3<i32>

Converts to this type from the input type.
Source§

impl From<Point3<i32>> for IVec3

Source§

fn from(v: Point3<i32>) -> IVec3

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<U8Vec3> for IVec3

Source§

fn from(v: U8Vec3) -> IVec3

Converts to this type from the input type.
Source§

impl From<Vector3<i32>> for IVec3

Source§

fn from(v: Vector3<i32>) -> IVec3

Converts to this type from the input type.
Source§

impl Glsl for IVec3

Source§

const NAME: &'static str = mint::Vector3<i32>::NAME

The name of this type in GLSL, like vec2 or mat4.
Source§

impl Hash for IVec3

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 IVec3

Source§

type Output = i32

The returned type after indexing.
Source§

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

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

impl IndexMut<usize> for IVec3

Source§

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

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

impl IntoMint for IVec3

Source§

type MintType = Vector3<i32>

The mint type that this type is associated with.
Source§

impl Mul<&IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IVec3) -> IVec3

Performs the * operation. Read more
Source§

impl Mul<&IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IVec3) -> IVec3

Performs the * operation. Read more
Source§

impl Mul<&IVec3> for IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IVec3) -> IVec3

Performs the * operation. Read more
Source§

impl Mul<&IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &IVec3) -> IVec3

Performs the * operation. Read more
Source§

impl Mul<&i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i32) -> IVec3

Performs the * operation. Read more
Source§

impl Mul<&i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &i32) -> IVec3

Performs the * operation. Read more
Source§

impl Mul<IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> IVec3

Performs the * operation. Read more
Source§

impl Mul<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> IVec3

Performs the * operation. Read more
Source§

impl Mul for IVec3

Source§

type Output = IVec3

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl MulAssign<&IVec3> for IVec3

Source§

fn mul_assign(&mut self, rhs: &IVec3)

Performs the *= operation. Read more
Source§

impl MulAssign<&i32> for IVec3

Source§

fn mul_assign(&mut self, rhs: &i32)

Performs the *= operation. Read more
Source§

impl MulAssign<i32> for IVec3

Source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
Source§

impl MulAssign for IVec3

Source§

fn mul_assign(&mut self, rhs: IVec3)

Performs the *= operation. Read more
Source§

impl Neg for &IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn neg(self) -> IVec3

Performs the unary - operation. Read more
Source§

impl Neg for IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn neg(self) -> IVec3

Performs the unary - operation. Read more
Source§

impl Not for IVec3

Source§

type Output = IVec3

The resulting type after applying the ! operator.
Source§

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

Performs the unary ! operation. Read more
Source§

impl PartialEq for IVec3

Source§

fn eq(&self, other: &IVec3) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> Product<&'a IVec3> for IVec3

Source§

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

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product for IVec3

Source§

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

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Rem<&IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IVec3) -> IVec3

Performs the % operation. Read more
Source§

impl Rem<&IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IVec3) -> IVec3

Performs the % operation. Read more
Source§

impl Rem<&IVec3> for IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IVec3) -> IVec3

Performs the % operation. Read more
Source§

impl Rem<&IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &IVec3) -> IVec3

Performs the % operation. Read more
Source§

impl Rem<&i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i32) -> IVec3

Performs the % operation. Read more
Source§

impl Rem<&i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &i32) -> IVec3

Performs the % operation. Read more
Source§

impl Rem<IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i32) -> IVec3

Performs the % operation. Read more
Source§

impl Rem<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i32) -> IVec3

Performs the % operation. Read more
Source§

impl Rem for IVec3

Source§

type Output = IVec3

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl RemAssign<&IVec3> for IVec3

Source§

fn rem_assign(&mut self, rhs: &IVec3)

Performs the %= operation. Read more
Source§

impl RemAssign<&i32> for IVec3

Source§

fn rem_assign(&mut self, rhs: &i32)

Performs the %= operation. Read more
Source§

impl RemAssign<i32> for IVec3

Source§

fn rem_assign(&mut self, rhs: i32)

Performs the %= operation. Read more
Source§

impl RemAssign for IVec3

Source§

fn rem_assign(&mut self, rhs: IVec3)

Performs the %= operation. Read more
Source§

impl Shl<IVec3> for I16Vec3

Source§

type Output = I16Vec3

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec3> for I64Vec3

Source§

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<IVec3> for I8Vec3

Source§

type Output = I8Vec3

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec3> for U16Vec3

Source§

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<IVec3> for U64Vec3

Source§

type Output = U64Vec3

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec3> for U8Vec3

Source§

type Output = U8Vec3

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec3> for UVec3

Source§

type Output = UVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<UVec3> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<i16> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<i32> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<i64> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<i8> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<u16> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<u32> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<u64> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl<u8> for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shl for IVec3

Source§

type Output = IVec3

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

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

Performs the << operation. Read more
Source§

impl Shr<IVec3> for I16Vec3

Source§

type Output = I16Vec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec3> for I64Vec3

Source§

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<IVec3> for I8Vec3

Source§

type Output = I8Vec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec3> for U16Vec3

Source§

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<IVec3> for U64Vec3

Source§

type Output = U64Vec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec3> for U8Vec3

Source§

type Output = U8Vec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec3> for UVec3

Source§

type Output = UVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<UVec3> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<i16> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<i32> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<i64> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<i8> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<u16> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<u32> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<u64> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr<u8> for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Shr for IVec3

Source§

type Output = IVec3

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

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

Performs the >> operation. Read more
Source§

impl Sub<&IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IVec3) -> IVec3

Performs the - operation. Read more
Source§

impl Sub<&IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IVec3) -> IVec3

Performs the - operation. Read more
Source§

impl Sub<&IVec3> for IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IVec3) -> IVec3

Performs the - operation. Read more
Source§

impl Sub<&IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &IVec3) -> IVec3

Performs the - operation. Read more
Source§

impl Sub<&i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i32) -> IVec3

Performs the - operation. Read more
Source§

impl Sub<&i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &i32) -> IVec3

Performs the - operation. Read more
Source§

impl Sub<IVec3> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<IVec3> for &i32

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<IVec3> for i32

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<i32> for &IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i32) -> IVec3

Performs the - operation. Read more
Source§

impl Sub<i32> for IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i32) -> IVec3

Performs the - operation. Read more
Source§

impl Sub for IVec3

Source§

type Output = IVec3

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl SubAssign<&IVec3> for IVec3

Source§

fn sub_assign(&mut self, rhs: &IVec3)

Performs the -= operation. Read more
Source§

impl SubAssign<&i32> for IVec3

Source§

fn sub_assign(&mut self, rhs: &i32)

Performs the -= operation. Read more
Source§

impl SubAssign<i32> for IVec3

Source§

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
Source§

impl SubAssign for IVec3

Source§

fn sub_assign(&mut self, rhs: IVec3)

Performs the -= operation. Read more
Source§

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

Source§

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

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum for IVec3

Source§

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

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl TryFrom<I64Vec3> for IVec3

Source§

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<IVec3> for I16Vec3

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec3> for I8Vec3

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec3> for U16Vec3

Source§

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<IVec3> for U64Vec3

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec3> for U8Vec3

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec3> for UVec3

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<U64Vec3> for IVec3

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<UVec3> for IVec3

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl Vec3Swizzles for IVec3

Source§

type Vec2 = IVec2

Source§

type Vec4 = IVec4

Source§

fn xx(self) -> IVec2

Source§

fn xy(self) -> IVec2

Source§

fn xz(self) -> IVec2

Source§

fn yx(self) -> IVec2

Source§

fn yy(self) -> IVec2

Source§

fn yz(self) -> IVec2

Source§

fn zx(self) -> IVec2

Source§

fn zy(self) -> IVec2

Source§

fn zz(self) -> IVec2

Source§

fn xxx(self) -> IVec3

Source§

fn xxy(self) -> IVec3

Source§

fn xxz(self) -> IVec3

Source§

fn xyx(self) -> IVec3

Source§

fn xyy(self) -> IVec3

Source§

fn xzx(self) -> IVec3

Source§

fn xzy(self) -> IVec3

Source§

fn xzz(self) -> IVec3

Source§

fn yxx(self) -> IVec3

Source§

fn yxy(self) -> IVec3

Source§

fn yxz(self) -> IVec3

Source§

fn yyx(self) -> IVec3

Source§

fn yyy(self) -> IVec3

Source§

fn yyz(self) -> IVec3

Source§

fn yzx(self) -> IVec3

Source§

fn yzy(self) -> IVec3

Source§

fn yzz(self) -> IVec3

Source§

fn zxx(self) -> IVec3

Source§

fn zxy(self) -> IVec3

Source§

fn zxz(self) -> IVec3

Source§

fn zyx(self) -> IVec3

Source§

fn zyy(self) -> IVec3

Source§

fn zyz(self) -> IVec3

Source§

fn zzx(self) -> IVec3

Source§

fn zzy(self) -> IVec3

Source§

fn zzz(self) -> IVec3

Source§

fn xxxx(self) -> IVec4

Source§

fn xxxy(self) -> IVec4

Source§

fn xxxz(self) -> IVec4

Source§

fn xxyx(self) -> IVec4

Source§

fn xxyy(self) -> IVec4

Source§

fn xxyz(self) -> IVec4

Source§

fn xxzx(self) -> IVec4

Source§

fn xxzy(self) -> IVec4

Source§

fn xxzz(self) -> IVec4

Source§

fn xyxx(self) -> IVec4

Source§

fn xyxy(self) -> IVec4

Source§

fn xyxz(self) -> IVec4

Source§

fn xyyx(self) -> IVec4

Source§

fn xyyy(self) -> IVec4

Source§

fn xyyz(self) -> IVec4

Source§

fn xyzx(self) -> IVec4

Source§

fn xyzy(self) -> IVec4

Source§

fn xyzz(self) -> IVec4

Source§

fn xzxx(self) -> IVec4

Source§

fn xzxy(self) -> IVec4

Source§

fn xzxz(self) -> IVec4

Source§

fn xzyx(self) -> IVec4

Source§

fn xzyy(self) -> IVec4

Source§

fn xzyz(self) -> IVec4

Source§

fn xzzx(self) -> IVec4

Source§

fn xzzy(self) -> IVec4

Source§

fn xzzz(self) -> IVec4

Source§

fn yxxx(self) -> IVec4

Source§

fn yxxy(self) -> IVec4

Source§

fn yxxz(self) -> IVec4

Source§

fn yxyx(self) -> IVec4

Source§

fn yxyy(self) -> IVec4

Source§

fn yxyz(self) -> IVec4

Source§

fn yxzx(self) -> IVec4

Source§

fn yxzy(self) -> IVec4

Source§

fn yxzz(self) -> IVec4

Source§

fn yyxx(self) -> IVec4

Source§

fn yyxy(self) -> IVec4

Source§

fn yyxz(self) -> IVec4

Source§

fn yyyx(self) -> IVec4

Source§

fn yyyy(self) -> IVec4

Source§

fn yyyz(self) -> IVec4

Source§

fn yyzx(self) -> IVec4

Source§

fn yyzy(self) -> IVec4

Source§

fn yyzz(self) -> IVec4

Source§

fn yzxx(self) -> IVec4

Source§

fn yzxy(self) -> IVec4

Source§

fn yzxz(self) -> IVec4

Source§

fn yzyx(self) -> IVec4

Source§

fn yzyy(self) -> IVec4

Source§

fn yzyz(self) -> IVec4

Source§

fn yzzx(self) -> IVec4

Source§

fn yzzy(self) -> IVec4

Source§

fn yzzz(self) -> IVec4

Source§

fn zxxx(self) -> IVec4

Source§

fn zxxy(self) -> IVec4

Source§

fn zxxz(self) -> IVec4

Source§

fn zxyx(self) -> IVec4

Source§

fn zxyy(self) -> IVec4

Source§

fn zxyz(self) -> IVec4

Source§

fn zxzx(self) -> IVec4

Source§

fn zxzy(self) -> IVec4

Source§

fn zxzz(self) -> IVec4

Source§

fn zyxx(self) -> IVec4

Source§

fn zyxy(self) -> IVec4

Source§

fn zyxz(self) -> IVec4

Source§

fn zyyx(self) -> IVec4

Source§

fn zyyy(self) -> IVec4

Source§

fn zyyz(self) -> IVec4

Source§

fn zyzx(self) -> IVec4

Source§

fn zyzy(self) -> IVec4

Source§

fn zyzz(self) -> IVec4

Source§

fn zzxx(self) -> IVec4

Source§

fn zzxy(self) -> IVec4

Source§

fn zzxz(self) -> IVec4

Source§

fn zzyx(self) -> IVec4

Source§

fn zzyy(self) -> IVec4

Source§

fn zzyz(self) -> IVec4

Source§

fn zzzx(self) -> IVec4

Source§

fn zzzy(self) -> IVec4

Source§

fn zzzz(self) -> IVec4

Source§

fn xyz(self) -> Self

Source§

impl Zeroable for IVec3

Source§

fn zeroed() -> Self

Source§

impl Copy for IVec3

Source§

impl Eq for IVec3

Source§

impl Pod for IVec3

Source§

impl StructuralPartialEq for IVec3

Source§

impl Uniform for IVec3

Auto Trait Implementations§

§

impl Freeze for IVec3

§

impl RefUnwindSafe for IVec3

§

impl Send for IVec3

§

impl Sync for IVec3

§

impl Unpin for IVec3

§

impl UnwindSafe for IVec3

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,

Source§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

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

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
Source§

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

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

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

Converts &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)

Converts &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> 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> DowncastSend for T
where T: Any + Send,

Source§

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

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

Source§

fn into_any_sync(self: Box<T>) -> Box<dyn Any + Sync + Send>

Converts Box<Trait> (where Trait: DowncastSync) to Box<dyn Any + Send + Sync>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

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

Converts Arc<Trait> (where Trait: DowncastSync) to Arc<Any>, which can then be downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

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

Source§

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

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<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> FilterHaving<T, Here> for T
where T: ?Sized,

Source§

fn get(&self) -> &T

Get the T element of a filter chain
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<S> FromSample<S> for S

Source§

fn from_sample_(s: S) -> S

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

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

Source§

fn into_sample(self) -> T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> ToOwned for T
where T: Clone,

Source§

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, U> ToSample<U> for T
where U: FromSample<T>,

Source§

fn to_sample_(self) -> U

Source§

impl<T> ToSmolStr for T
where T: Display + ?Sized,

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

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

Source§

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

Source§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

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> WriteStd140 for T
where T: AsStd140,

Source§

fn write_std140<W>(&self, writer: &mut Writer<W>) -> Result<usize, Error>
where W: Write,

Writes this value into the given Writer using std140 layout rules. Read more
Source§

fn std140_size(&self) -> usize

The space required to write this value using std140 layout rules. This does not include alignment padding that may be needed before or after this type when written as part of a larger buffer.
Source§

impl<T> WriteStd430 for T
where T: AsStd430,

Source§

fn write_std430<W>(&self, writer: &mut Writer<W>) -> Result<usize, Error>
where W: Write,

Writes this value into the given Writer using std430 layout rules. Read more
Source§

fn std430_size(&self) -> usize

The space required to write this value using std430 layout rules. This does not include alignment padding that may be needed before or after this type when written as part of a larger buffer.
Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,

Source§

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