IVec4

Struct IVec4 

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

A 4-dimensional vector.

Fields§

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

Implementations§

Source§

impl IVec4

Source

pub const ZERO: IVec4

All zeroes.

Source

pub const ONE: IVec4

All ones.

Source

pub const NEG_ONE: IVec4

All negative ones.

Source

pub const MIN: IVec4

All i32::MIN.

Source

pub const MAX: IVec4

All i32::MAX.

Source

pub const X: IVec4

A unit vector pointing along the positive X axis.

Source

pub const Y: IVec4

A unit vector pointing along the positive Y axis.

Source

pub const Z: IVec4

A unit vector pointing along the positive Z axis.

Source

pub const W: IVec4

A unit vector pointing along the positive W axis.

Source

pub const NEG_X: IVec4

A unit vector pointing along the negative X axis.

Source

pub const NEG_Y: IVec4

A unit vector pointing along the negative Y axis.

Source

pub const NEG_Z: IVec4

A unit vector pointing along the negative Z axis.

Source

pub const NEG_W: IVec4

A unit vector pointing along the negative W axis.

Source

pub const AXES: [IVec4; 4]

The unit axes.

Source

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

Creates a new vector.

Source

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

Creates a vector with all elements set to v.

Source

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

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

Source

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

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; 4]) -> IVec4

Creates a new vector from an array.

Source

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

[x, y, z, w]

Source

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

Creates a vector from the first 4 values in slice.

§Panics

Panics if slice is less than 4 elements long.

Source

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

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

§Panics

Panics if slice is less than 4 elements long.

Source

pub fn truncate(self) -> IVec3

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

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

Source

pub fn with_x(self, x: i32) -> IVec4

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

Source

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

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

Source

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

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

Source

pub fn with_w(self, w: i32) -> IVec4

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

Source

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

Computes the dot product of self and rhs.

Source

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

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

Source

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

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

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

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

Returns a vector mask containing the result of a == comparison for each element of self and rhs.

In other words, this computes [self.x == rhs.x, self.y == rhs.y, ..] for all elements.

Source

pub fn cmpne(self, rhs: IVec4) -> BVec4

Returns a vector mask containing the result of a != comparison for each element of self and rhs.

In other words this computes [self.x != rhs.x, self.y != rhs.y, ..] for all elements.

Source

pub fn cmpge(self, rhs: IVec4) -> BVec4

Returns a vector mask containing the result of a >= comparison for each element of self and rhs.

In other words this computes [self.x >= rhs.x, self.y >= rhs.y, ..] for all elements.

Source

pub fn cmpgt(self, rhs: IVec4) -> BVec4

Returns a vector mask containing the result of a > comparison for each element of self and rhs.

In other words this computes [self.x > rhs.x, self.y > rhs.y, ..] for all elements.

Source

pub fn cmple(self, rhs: IVec4) -> BVec4

Returns a vector mask containing the result of a <= comparison for each element of self and rhs.

In other words this computes [self.x <= rhs.x, self.y <= rhs.y, ..] for all elements.

Source

pub fn cmplt(self, rhs: IVec4) -> BVec4

Returns a vector mask containing the result of a < comparison for each element of self and rhs.

In other words this computes [self.x < rhs.x, self.y < rhs.y, ..] for all elements.

Source

pub fn abs(self) -> IVec4

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

Source

pub fn signum(self) -> IVec4

Returns a vector with elements representing the sign of self.

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

pub fn is_negative_bitmask(self) -> u32

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

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

Source

pub fn length_squared(self) -> i32

Computes the squared length of self.

Source

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

Compute the squared euclidean distance between two points in space.

Source

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

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

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

§Panics

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

Source

pub fn as_vec4(&self) -> Vec4

Casts all elements of self to f32.

Source

pub fn as_dvec4(&self) -> DVec4

Casts all elements of self to f64.

Source

pub fn as_i8vec4(&self) -> I8Vec4

Casts all elements of self to i8.

Source

pub fn as_u8vec4(&self) -> U8Vec4

Casts all elements of self to u8.

Source

pub fn as_i16vec4(&self) -> I16Vec4

Casts all elements of self to i16.

Source

pub fn as_u16vec4(&self) -> U16Vec4

Casts all elements of self to u16.

Source

pub fn as_uvec4(&self) -> UVec4

Casts all elements of self to u32.

Source

pub fn as_i64vec4(&self) -> I64Vec4

Casts all elements of self to i64.

Source

pub fn as_u64vec4(&self) -> U64Vec4

Casts all elements of self to u64.

Source

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

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

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

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

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

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

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

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

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

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

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

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

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

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&IVec4> for IVec4

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<&i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add for IVec4

Source§

type Output = IVec4

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl AddAssign<&IVec4> for IVec4

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<&i32> for IVec4

Source§

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

Performs the += operation. Read more
Source§

impl AddAssign<i32> for IVec4

Source§

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
Source§

impl AddAssign for IVec4

Source§

fn add_assign(&mut self, rhs: IVec4)

Performs the += operation. Read more
Source§

impl AsMut<[i32; 4]> for IVec4

Available on non-target_arch=spirv only.
Source§

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

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

impl AsRef<[i32; 4]> for IVec4

Available on non-target_arch=spirv only.
Source§

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

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

impl AsStd140 for IVec4

Source§

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

The std140 version of this value.
Source§

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

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

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

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 IVec4

Source§

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

The std430 version of this value.
Source§

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

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

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

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 IVec4

Source§

type Output = IVec4

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd for IVec4

Source§

type Output = IVec4

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitOr<i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr for IVec4

Source§

type Output = IVec4

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitXor<i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor for IVec4

Source§

type Output = IVec4

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl Clone for IVec4

Source§

fn clone(&self) -> IVec4

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 IVec4

Source§

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

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

impl Default for IVec4

Source§

fn default() -> IVec4

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

impl Display for IVec4

Source§

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

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

impl Div<&IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&IVec4> for IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<&i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div for IVec4

Source§

type Output = IVec4

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl DivAssign<&IVec4> for IVec4

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<&i32> for IVec4

Source§

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

Performs the /= operation. Read more
Source§

impl DivAssign<i32> for IVec4

Source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
Source§

impl DivAssign for IVec4

Source§

fn div_assign(&mut self, rhs: IVec4)

Performs the /= operation. Read more
Source§

impl From<[i32; 4]> for IVec4

Source§

fn from(a: [i32; 4]) -> IVec4

Converts to this type from the input type.
Source§

impl From<(IVec2, IVec2)> for IVec4

Source§

fn from(_: (IVec2, IVec2)) -> IVec4

Converts to this type from the input type.
Source§

impl From<(IVec2, i32, i32)> for IVec4

Source§

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

Converts to this type from the input type.
Source§

impl From<(IVec3, i32)> for IVec4

Source§

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

Converts to this type from the input type.
Source§

impl From<(i32, IVec3)> for IVec4

Source§

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

Converts to this type from the input type.
Source§

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

Source§

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

Converts to this type from the input type.
Source§

impl From<BVec4> for IVec4

Source§

fn from(v: BVec4) -> IVec4

Converts to this type from the input type.
Source§

impl From<BVec4A> for IVec4

Available on non-crate feature scalar-math only.
Source§

fn from(v: BVec4A) -> IVec4

Converts to this type from the input type.
Source§

impl From<I16Vec4> for IVec4

Source§

fn from(v: I16Vec4) -> IVec4

Converts to this type from the input type.
Source§

impl From<I8Vec4> for IVec4

Source§

fn from(v: I8Vec4) -> IVec4

Converts to this type from the input type.
Source§

impl From<IVec4> for [i32; 4]

Source§

fn from(v: IVec4) -> [i32; 4]

Converts to this type from the input type.
Source§

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

Source§

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

Converts to this type from the input type.
Source§

impl From<IVec4> for DVec4

Source§

fn from(v: IVec4) -> DVec4

Converts to this type from the input type.
Source§

impl From<IVec4> for I64Vec4

Source§

fn from(v: IVec4) -> I64Vec4

Converts to this type from the input type.
Source§

impl From<IVec4> for Vector4<i32>

Source§

fn from(v: IVec4) -> Vector4<i32>

Converts to this type from the input type.
Source§

impl From<U16Vec4> for IVec4

Source§

fn from(v: U16Vec4) -> IVec4

Converts to this type from the input type.
Source§

impl From<U8Vec4> for IVec4

Source§

fn from(v: U8Vec4) -> IVec4

Converts to this type from the input type.
Source§

impl From<Vector4<i32>> for IVec4

Source§

fn from(v: Vector4<i32>) -> IVec4

Converts to this type from the input type.
Source§

impl Glsl for IVec4

Source§

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

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

impl Hash for IVec4

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 IVec4

Source§

type Output = i32

The returned type after indexing.
Source§

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

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

impl IndexMut<usize> for IVec4

Source§

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

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

impl IntoMint for IVec4

Source§

type MintType = Vector4<i32>

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

impl Mul<&IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&IVec4> for IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<&i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul for IVec4

Source§

type Output = IVec4

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl MulAssign<&IVec4> for IVec4

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<&i32> for IVec4

Source§

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

Performs the *= operation. Read more
Source§

impl MulAssign<i32> for IVec4

Source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
Source§

impl MulAssign for IVec4

Source§

fn mul_assign(&mut self, rhs: IVec4)

Performs the *= operation. Read more
Source§

impl Neg for &IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

fn neg(self) -> IVec4

Performs the unary - operation. Read more
Source§

impl Neg for IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

fn neg(self) -> IVec4

Performs the unary - operation. Read more
Source§

impl Not for IVec4

Source§

type Output = IVec4

The resulting type after applying the ! operator.
Source§

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

Performs the unary ! operation. Read more
Source§

impl PartialEq for IVec4

Source§

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

Source§

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

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

impl Product for IVec4

Source§

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

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

impl Rem<&IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&IVec4> for IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<&i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem for IVec4

Source§

type Output = IVec4

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl RemAssign<&IVec4> for IVec4

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<&i32> for IVec4

Source§

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

Performs the %= operation. Read more
Source§

impl RemAssign<i32> for IVec4

Source§

fn rem_assign(&mut self, rhs: i32)

Performs the %= operation. Read more
Source§

impl RemAssign for IVec4

Source§

fn rem_assign(&mut self, rhs: IVec4)

Performs the %= operation. Read more
Source§

impl Shl<IVec4> for I16Vec4

Source§

type Output = I16Vec4

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec4> for I64Vec4

Source§

type Output = I64Vec4

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec4> for I8Vec4

Source§

type Output = I8Vec4

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec4> for U16Vec4

Source§

type Output = U16Vec4

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec4> for U64Vec4

Source§

type Output = U64Vec4

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec4> for U8Vec4

Source§

type Output = U8Vec4

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

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

Performs the << operation. Read more
Source§

impl Shl<IVec4> for UVec4

Source§

type Output = UVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<UVec4> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<i16> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<i32> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<i64> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<i8> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<u16> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<u32> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<u64> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl<u8> for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shl for IVec4

Source§

type Output = IVec4

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

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

Performs the << operation. Read more
Source§

impl Shr<IVec4> for I16Vec4

Source§

type Output = I16Vec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec4> for I64Vec4

Source§

type Output = I64Vec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec4> for I8Vec4

Source§

type Output = I8Vec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec4> for U16Vec4

Source§

type Output = U16Vec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec4> for U64Vec4

Source§

type Output = U64Vec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec4> for U8Vec4

Source§

type Output = U8Vec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<IVec4> for UVec4

Source§

type Output = UVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<UVec4> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<i16> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<i32> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<i64> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<i8> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<u16> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<u32> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<u64> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr<u8> for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Shr for IVec4

Source§

type Output = IVec4

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

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

Performs the >> operation. Read more
Source§

impl Sub<&IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<&IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<&IVec4> for IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<&IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<&i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<&i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<IVec4> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<IVec4> for &i32

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<IVec4> for i32

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<i32> for &IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<i32> for IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub for IVec4

Source§

type Output = IVec4

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl SubAssign<&IVec4> for IVec4

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<&i32> for IVec4

Source§

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

Performs the -= operation. Read more
Source§

impl SubAssign<i32> for IVec4

Source§

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
Source§

impl SubAssign for IVec4

Source§

fn sub_assign(&mut self, rhs: IVec4)

Performs the -= operation. Read more
Source§

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

Source§

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

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

impl Sum for IVec4

Source§

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

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

impl TryFrom<I64Vec4> for IVec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec4> for I16Vec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec4> for I8Vec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec4> for U16Vec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec4> for U64Vec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec4> for U8Vec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<IVec4> for UVec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<U64Vec4> for IVec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl TryFrom<UVec4> for IVec4

Source§

type Error = TryFromIntError

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

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

Performs the conversion.
Source§

impl Vec4Swizzles for IVec4

Source§

type Vec2 = IVec2

Source§

type Vec3 = IVec3

Source§

fn xx(self) -> IVec2

Source§

fn xy(self) -> IVec2

Source§

fn xz(self) -> IVec2

Source§

fn xw(self) -> IVec2

Source§

fn yx(self) -> IVec2

Source§

fn yy(self) -> IVec2

Source§

fn yz(self) -> IVec2

Source§

fn yw(self) -> IVec2

Source§

fn zx(self) -> IVec2

Source§

fn zy(self) -> IVec2

Source§

fn zz(self) -> IVec2

Source§

fn zw(self) -> IVec2

Source§

fn wx(self) -> IVec2

Source§

fn wy(self) -> IVec2

Source§

fn wz(self) -> IVec2

Source§

fn ww(self) -> IVec2

Source§

fn xxx(self) -> IVec3

Source§

fn xxy(self) -> IVec3

Source§

fn xxz(self) -> IVec3

Source§

fn xxw(self) -> IVec3

Source§

fn xyx(self) -> IVec3

Source§

fn xyy(self) -> IVec3

Source§

fn xyz(self) -> IVec3

Source§

fn xyw(self) -> IVec3

Source§

fn xzx(self) -> IVec3

Source§

fn xzy(self) -> IVec3

Source§

fn xzz(self) -> IVec3

Source§

fn xzw(self) -> IVec3

Source§

fn xwx(self) -> IVec3

Source§

fn xwy(self) -> IVec3

Source§

fn xwz(self) -> IVec3

Source§

fn xww(self) -> IVec3

Source§

fn yxx(self) -> IVec3

Source§

fn yxy(self) -> IVec3

Source§

fn yxz(self) -> IVec3

Source§

fn yxw(self) -> IVec3

Source§

fn yyx(self) -> IVec3

Source§

fn yyy(self) -> IVec3

Source§

fn yyz(self) -> IVec3

Source§

fn yyw(self) -> IVec3

Source§

fn yzx(self) -> IVec3

Source§

fn yzy(self) -> IVec3

Source§

fn yzz(self) -> IVec3

Source§

fn yzw(self) -> IVec3

Source§

fn ywx(self) -> IVec3

Source§

fn ywy(self) -> IVec3

Source§

fn ywz(self) -> IVec3

Source§

fn yww(self) -> IVec3

Source§

fn zxx(self) -> IVec3

Source§

fn zxy(self) -> IVec3

Source§

fn zxz(self) -> IVec3

Source§

fn zxw(self) -> IVec3

Source§

fn zyx(self) -> IVec3

Source§

fn zyy(self) -> IVec3

Source§

fn zyz(self) -> IVec3

Source§

fn zyw(self) -> IVec3

Source§

fn zzx(self) -> IVec3

Source§

fn zzy(self) -> IVec3

Source§

fn zzz(self) -> IVec3

Source§

fn zzw(self) -> IVec3

Source§

fn zwx(self) -> IVec3

Source§

fn zwy(self) -> IVec3

Source§

fn zwz(self) -> IVec3

Source§

fn zww(self) -> IVec3

Source§

fn wxx(self) -> IVec3

Source§

fn wxy(self) -> IVec3

Source§

fn wxz(self) -> IVec3

Source§

fn wxw(self) -> IVec3

Source§

fn wyx(self) -> IVec3

Source§

fn wyy(self) -> IVec3

Source§

fn wyz(self) -> IVec3

Source§

fn wyw(self) -> IVec3

Source§

fn wzx(self) -> IVec3

Source§

fn wzy(self) -> IVec3

Source§

fn wzz(self) -> IVec3

Source§

fn wzw(self) -> IVec3

Source§

fn wwx(self) -> IVec3

Source§

fn wwy(self) -> IVec3

Source§

fn wwz(self) -> IVec3

Source§

fn www(self) -> IVec3

Source§

fn xxxx(self) -> IVec4

Source§

fn xxxy(self) -> IVec4

Source§

fn xxxz(self) -> IVec4

Source§

fn xxxw(self) -> IVec4

Source§

fn xxyx(self) -> IVec4

Source§

fn xxyy(self) -> IVec4

Source§

fn xxyz(self) -> IVec4

Source§

fn xxyw(self) -> IVec4

Source§

fn xxzx(self) -> IVec4

Source§

fn xxzy(self) -> IVec4

Source§

fn xxzz(self) -> IVec4

Source§

fn xxzw(self) -> IVec4

Source§

fn xxwx(self) -> IVec4

Source§

fn xxwy(self) -> IVec4

Source§

fn xxwz(self) -> IVec4

Source§

fn xxww(self) -> IVec4

Source§

fn xyxx(self) -> IVec4

Source§

fn xyxy(self) -> IVec4

Source§

fn xyxz(self) -> IVec4

Source§

fn xyxw(self) -> IVec4

Source§

fn xyyx(self) -> IVec4

Source§

fn xyyy(self) -> IVec4

Source§

fn xyyz(self) -> IVec4

Source§

fn xyyw(self) -> IVec4

Source§

fn xyzx(self) -> IVec4

Source§

fn xyzy(self) -> IVec4

Source§

fn xyzz(self) -> IVec4

Source§

fn xywx(self) -> IVec4

Source§

fn xywy(self) -> IVec4

Source§

fn xywz(self) -> IVec4

Source§

fn xyww(self) -> IVec4

Source§

fn xzxx(self) -> IVec4

Source§

fn xzxy(self) -> IVec4

Source§

fn xzxz(self) -> IVec4

Source§

fn xzxw(self) -> IVec4

Source§

fn xzyx(self) -> IVec4

Source§

fn xzyy(self) -> IVec4

Source§

fn xzyz(self) -> IVec4

Source§

fn xzyw(self) -> IVec4

Source§

fn xzzx(self) -> IVec4

Source§

fn xzzy(self) -> IVec4

Source§

fn xzzz(self) -> IVec4

Source§

fn xzzw(self) -> IVec4

Source§

fn xzwx(self) -> IVec4

Source§

fn xzwy(self) -> IVec4

Source§

fn xzwz(self) -> IVec4

Source§

fn xzww(self) -> IVec4

Source§

fn xwxx(self) -> IVec4

Source§

fn xwxy(self) -> IVec4

Source§

fn xwxz(self) -> IVec4

Source§

fn xwxw(self) -> IVec4

Source§

fn xwyx(self) -> IVec4

Source§

fn xwyy(self) -> IVec4

Source§

fn xwyz(self) -> IVec4

Source§

fn xwyw(self) -> IVec4

Source§

fn xwzx(self) -> IVec4

Source§

fn xwzy(self) -> IVec4

Source§

fn xwzz(self) -> IVec4

Source§

fn xwzw(self) -> IVec4

Source§

fn xwwx(self) -> IVec4

Source§

fn xwwy(self) -> IVec4

Source§

fn xwwz(self) -> IVec4

Source§

fn xwww(self) -> IVec4

Source§

fn yxxx(self) -> IVec4

Source§

fn yxxy(self) -> IVec4

Source§

fn yxxz(self) -> IVec4

Source§

fn yxxw(self) -> IVec4

Source§

fn yxyx(self) -> IVec4

Source§

fn yxyy(self) -> IVec4

Source§

fn yxyz(self) -> IVec4

Source§

fn yxyw(self) -> IVec4

Source§

fn yxzx(self) -> IVec4

Source§

fn yxzy(self) -> IVec4

Source§

fn yxzz(self) -> IVec4

Source§

fn yxzw(self) -> IVec4

Source§

fn yxwx(self) -> IVec4

Source§

fn yxwy(self) -> IVec4

Source§

fn yxwz(self) -> IVec4

Source§

fn yxww(self) -> IVec4

Source§

fn yyxx(self) -> IVec4

Source§

fn yyxy(self) -> IVec4

Source§

fn yyxz(self) -> IVec4

Source§

fn yyxw(self) -> IVec4

Source§

fn yyyx(self) -> IVec4

Source§

fn yyyy(self) -> IVec4

Source§

fn yyyz(self) -> IVec4

Source§

fn yyyw(self) -> IVec4

Source§

fn yyzx(self) -> IVec4

Source§

fn yyzy(self) -> IVec4

Source§

fn yyzz(self) -> IVec4

Source§

fn yyzw(self) -> IVec4

Source§

fn yywx(self) -> IVec4

Source§

fn yywy(self) -> IVec4

Source§

fn yywz(self) -> IVec4

Source§

fn yyww(self) -> IVec4

Source§

fn yzxx(self) -> IVec4

Source§

fn yzxy(self) -> IVec4

Source§

fn yzxz(self) -> IVec4

Source§

fn yzxw(self) -> IVec4

Source§

fn yzyx(self) -> IVec4

Source§

fn yzyy(self) -> IVec4

Source§

fn yzyz(self) -> IVec4

Source§

fn yzyw(self) -> IVec4

Source§

fn yzzx(self) -> IVec4

Source§

fn yzzy(self) -> IVec4

Source§

fn yzzz(self) -> IVec4

Source§

fn yzzw(self) -> IVec4

Source§

fn yzwx(self) -> IVec4

Source§

fn yzwy(self) -> IVec4

Source§

fn yzwz(self) -> IVec4

Source§

fn yzww(self) -> IVec4

Source§

fn ywxx(self) -> IVec4

Source§

fn ywxy(self) -> IVec4

Source§

fn ywxz(self) -> IVec4

Source§

fn ywxw(self) -> IVec4

Source§

fn ywyx(self) -> IVec4

Source§

fn ywyy(self) -> IVec4

Source§

fn ywyz(self) -> IVec4

Source§

fn ywyw(self) -> IVec4

Source§

fn ywzx(self) -> IVec4

Source§

fn ywzy(self) -> IVec4

Source§

fn ywzz(self) -> IVec4

Source§

fn ywzw(self) -> IVec4

Source§

fn ywwx(self) -> IVec4

Source§

fn ywwy(self) -> IVec4

Source§

fn ywwz(self) -> IVec4

Source§

fn ywww(self) -> IVec4

Source§

fn zxxx(self) -> IVec4

Source§

fn zxxy(self) -> IVec4

Source§

fn zxxz(self) -> IVec4

Source§

fn zxxw(self) -> IVec4

Source§

fn zxyx(self) -> IVec4

Source§

fn zxyy(self) -> IVec4

Source§

fn zxyz(self) -> IVec4

Source§

fn zxyw(self) -> IVec4

Source§

fn zxzx(self) -> IVec4

Source§

fn zxzy(self) -> IVec4

Source§

fn zxzz(self) -> IVec4

Source§

fn zxzw(self) -> IVec4

Source§

fn zxwx(self) -> IVec4

Source§

fn zxwy(self) -> IVec4

Source§

fn zxwz(self) -> IVec4

Source§

fn zxww(self) -> IVec4

Source§

fn zyxx(self) -> IVec4

Source§

fn zyxy(self) -> IVec4

Source§

fn zyxz(self) -> IVec4

Source§

fn zyxw(self) -> IVec4

Source§

fn zyyx(self) -> IVec4

Source§

fn zyyy(self) -> IVec4

Source§

fn zyyz(self) -> IVec4

Source§

fn zyyw(self) -> IVec4

Source§

fn zyzx(self) -> IVec4

Source§

fn zyzy(self) -> IVec4

Source§

fn zyzz(self) -> IVec4

Source§

fn zyzw(self) -> IVec4

Source§

fn zywx(self) -> IVec4

Source§

fn zywy(self) -> IVec4

Source§

fn zywz(self) -> IVec4

Source§

fn zyww(self) -> IVec4

Source§

fn zzxx(self) -> IVec4

Source§

fn zzxy(self) -> IVec4

Source§

fn zzxz(self) -> IVec4

Source§

fn zzxw(self) -> IVec4

Source§

fn zzyx(self) -> IVec4

Source§

fn zzyy(self) -> IVec4

Source§

fn zzyz(self) -> IVec4

Source§

fn zzyw(self) -> IVec4

Source§

fn zzzx(self) -> IVec4

Source§

fn zzzy(self) -> IVec4

Source§

fn zzzz(self) -> IVec4

Source§

fn zzzw(self) -> IVec4

Source§

fn zzwx(self) -> IVec4

Source§

fn zzwy(self) -> IVec4

Source§

fn zzwz(self) -> IVec4

Source§

fn zzww(self) -> IVec4

Source§

fn zwxx(self) -> IVec4

Source§

fn zwxy(self) -> IVec4

Source§

fn zwxz(self) -> IVec4

Source§

fn zwxw(self) -> IVec4

Source§

fn zwyx(self) -> IVec4

Source§

fn zwyy(self) -> IVec4

Source§

fn zwyz(self) -> IVec4

Source§

fn zwyw(self) -> IVec4

Source§

fn zwzx(self) -> IVec4

Source§

fn zwzy(self) -> IVec4

Source§

fn zwzz(self) -> IVec4

Source§

fn zwzw(self) -> IVec4

Source§

fn zwwx(self) -> IVec4

Source§

fn zwwy(self) -> IVec4

Source§

fn zwwz(self) -> IVec4

Source§

fn zwww(self) -> IVec4

Source§

fn wxxx(self) -> IVec4

Source§

fn wxxy(self) -> IVec4

Source§

fn wxxz(self) -> IVec4

Source§

fn wxxw(self) -> IVec4

Source§

fn wxyx(self) -> IVec4

Source§

fn wxyy(self) -> IVec4

Source§

fn wxyz(self) -> IVec4

Source§

fn wxyw(self) -> IVec4

Source§

fn wxzx(self) -> IVec4

Source§

fn wxzy(self) -> IVec4

Source§

fn wxzz(self) -> IVec4

Source§

fn wxzw(self) -> IVec4

Source§

fn wxwx(self) -> IVec4

Source§

fn wxwy(self) -> IVec4

Source§

fn wxwz(self) -> IVec4

Source§

fn wxww(self) -> IVec4

Source§

fn wyxx(self) -> IVec4

Source§

fn wyxy(self) -> IVec4

Source§

fn wyxz(self) -> IVec4

Source§

fn wyxw(self) -> IVec4

Source§

fn wyyx(self) -> IVec4

Source§

fn wyyy(self) -> IVec4

Source§

fn wyyz(self) -> IVec4

Source§

fn wyyw(self) -> IVec4

Source§

fn wyzx(self) -> IVec4

Source§

fn wyzy(self) -> IVec4

Source§

fn wyzz(self) -> IVec4

Source§

fn wyzw(self) -> IVec4

Source§

fn wywx(self) -> IVec4

Source§

fn wywy(self) -> IVec4

Source§

fn wywz(self) -> IVec4

Source§

fn wyww(self) -> IVec4

Source§

fn wzxx(self) -> IVec4

Source§

fn wzxy(self) -> IVec4

Source§

fn wzxz(self) -> IVec4

Source§

fn wzxw(self) -> IVec4

Source§

fn wzyx(self) -> IVec4

Source§

fn wzyy(self) -> IVec4

Source§

fn wzyz(self) -> IVec4

Source§

fn wzyw(self) -> IVec4

Source§

fn wzzx(self) -> IVec4

Source§

fn wzzy(self) -> IVec4

Source§

fn wzzz(self) -> IVec4

Source§

fn wzzw(self) -> IVec4

Source§

fn wzwx(self) -> IVec4

Source§

fn wzwy(self) -> IVec4

Source§

fn wzwz(self) -> IVec4

Source§

fn wzww(self) -> IVec4

Source§

fn wwxx(self) -> IVec4

Source§

fn wwxy(self) -> IVec4

Source§

fn wwxz(self) -> IVec4

Source§

fn wwxw(self) -> IVec4

Source§

fn wwyx(self) -> IVec4

Source§

fn wwyy(self) -> IVec4

Source§

fn wwyz(self) -> IVec4

Source§

fn wwyw(self) -> IVec4

Source§

fn wwzx(self) -> IVec4

Source§

fn wwzy(self) -> IVec4

Source§

fn wwzz(self) -> IVec4

Source§

fn wwzw(self) -> IVec4

Source§

fn wwwx(self) -> IVec4

Source§

fn wwwy(self) -> IVec4

Source§

fn wwwz(self) -> IVec4

Source§

fn wwww(self) -> IVec4

Source§

fn xyzw(self) -> Self

Source§

impl Zeroable for IVec4

Source§

fn zeroed() -> Self

Source§

impl Copy for IVec4

Source§

impl Eq for IVec4

Source§

impl Pod for IVec4

Source§

impl StructuralPartialEq for IVec4

Source§

impl Uniform for IVec4

Auto Trait Implementations§

§

impl Freeze for IVec4

§

impl RefUnwindSafe for IVec4

§

impl Send for IVec4

§

impl Sync for IVec4

§

impl Unpin for IVec4

§

impl UnwindSafe for IVec4

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,