Struct bevy_internal::math::IVec2

source ·
#[repr(C)]
pub struct IVec2 { pub x: i32, pub y: i32, }
Expand description

A 2-dimensional vector.

Fields§

§x: i32§y: i32

Implementations§

source§

impl IVec2

source

pub const ZERO: IVec2 = _

All zeroes.

source

pub const ONE: IVec2 = _

All ones.

source

pub const NEG_ONE: IVec2 = _

All negative ones.

source

pub const MIN: IVec2 = _

All i32::MIN.

source

pub const MAX: IVec2 = _

All i32::MAX.

source

pub const X: IVec2 = _

A unit vector pointing along the positive X axis.

source

pub const Y: IVec2 = _

A unit vector pointing along the positive Y axis.

source

pub const NEG_X: IVec2 = _

A unit vector pointing along the negative X axis.

source

pub const NEG_Y: IVec2 = _

A unit vector pointing along the negative Y axis.

source

pub const AXES: [IVec2; 2] = _

The unit axes.

source

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

Creates a new vector.

source

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

Creates a vector with all elements set to v.

source

pub fn select(mask: BVec2, if_true: IVec2, if_false: IVec2) -> IVec2

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; 2]) -> IVec2

Creates a new vector from an array.

source

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

[x, y]

source

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

Creates a vector from the first 2 values in slice.

§Panics

Panics if slice is less than 2 elements long.

source

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

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

§Panics

Panics if slice is less than 2 elements long.

source

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

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

source

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

Computes the dot product of self and rhs.

source

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

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

source

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

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

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

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 cmpeq(self, rhs: IVec2) -> BVec2

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: IVec2) -> BVec2

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: IVec2) -> BVec2

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: IVec2) -> BVec2

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: IVec2) -> BVec2

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: IVec2) -> BVec2

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

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

source

pub fn signum(self) -> IVec2

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 2 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: IVec2) -> i32

Compute the squared euclidean distance between two points in space.

source

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

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

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 perp(self) -> IVec2

Returns a vector that is equal to self rotated by 90 degrees.

source

pub fn perp_dot(self, rhs: IVec2) -> i32

The perpendicular dot product of self and rhs. Also known as the wedge product, 2D cross product, and determinant.

source

pub fn rotate(self, rhs: IVec2) -> IVec2

Returns rhs rotated by the angle of self. If self is normalized, then this just rotation. This is what you usually want. Otherwise, it will be like a rotation with a multiplication by self’s length.

source

pub fn as_vec2(&self) -> Vec2

Casts all elements of self to f32.

source

pub fn as_dvec2(&self) -> DVec2

Casts all elements of self to f64.

source

pub fn as_i16vec2(&self) -> I16Vec2

Casts all elements of self to i16.

source

pub fn as_u16vec2(&self) -> U16Vec2

Casts all elements of self to u16.

source

pub fn as_uvec2(&self) -> UVec2

Casts all elements of self to u32.

source

pub fn as_i64vec2(&self) -> I64Vec2

Casts all elements of self to i64.

source

pub fn as_u64vec2(&self) -> U64Vec2

Casts all elements of self to u64.

source

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

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

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

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

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

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

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

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

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

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

Trait Implementations§

source§

impl Add<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add for IVec2

§

type Output = IVec2

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<i32> for IVec2

source§

fn add_assign(&mut self, rhs: i32)

Performs the += operation. Read more
source§

impl AddAssign for IVec2

source§

fn add_assign(&mut self, rhs: IVec2)

Performs the += operation. Read more
source§

impl AsMut<[i32; 2]> for IVec2

source§

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

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

impl AsRef<[i32; 2]> for IVec2

source§

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

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

impl BitAnd<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitAnd for IVec2

§

type Output = IVec2

The resulting type after applying the & operator.
source§

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

Performs the & operation. Read more
source§

impl BitOr<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitOr for IVec2

§

type Output = IVec2

The resulting type after applying the | operator.
source§

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

Performs the | operation. Read more
source§

impl BitXor<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl BitXor for IVec2

§

type Output = IVec2

The resulting type after applying the ^ operator.
source§

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

Performs the ^ operation. Read more
source§

impl Clone for IVec2

source§

fn clone(&self) -> IVec2

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for IVec2

source§

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

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

impl Default for IVec2

source§

fn default() -> IVec2

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

impl<'de> Deserialize<'de> for IVec2

source§

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

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

impl Display for IVec2

source§

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

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

impl Div<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div for IVec2

§

type Output = IVec2

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<i32> for IVec2

source§

fn div_assign(&mut self, rhs: i32)

Performs the /= operation. Read more
source§

impl DivAssign for IVec2

source§

fn div_assign(&mut self, rhs: IVec2)

Performs the /= operation. Read more
source§

impl From<[i32; 2]> for IVec2

source§

fn from(a: [i32; 2]) -> IVec2

Converts to this type from the input type.
source§

impl From<(i32, i32)> for IVec2

source§

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

Converts to this type from the input type.
source§

impl From<I16Vec2> for IVec2

source§

fn from(v: I16Vec2) -> IVec2

Converts to this type from the input type.
source§

impl From<IVec2> for [i32; 2]

source§

fn from(v: IVec2) -> [i32; 2]

Converts to this type from the input type.
source§

impl From<IVec2> for (i32, i32)

source§

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

Converts to this type from the input type.
source§

impl From<IVec2> for DVec2

source§

fn from(v: IVec2) -> DVec2

Converts to this type from the input type.
source§

impl From<IVec2> for I64Vec2

source§

fn from(v: IVec2) -> I64Vec2

Converts to this type from the input type.
source§

impl From<U16Vec2> for IVec2

source§

fn from(v: U16Vec2) -> IVec2

Converts to this type from the input type.
source§

impl FromReflect for IVec2

source§

fn from_reflect(reflect: &(dyn Reflect + 'static)) -> Option<IVec2>

Constructs a concrete instance of Self from a reflected value.
source§

fn take_from_reflect( reflect: Box<dyn Reflect> ) -> Result<Self, Box<dyn Reflect>>

Attempts to downcast the given value to Self using, constructing the value using from_reflect if that fails. Read more
source§

impl GetTypeRegistration for IVec2

source§

impl Hash for IVec2

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 IVec2

§

type Output = i32

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for IVec2

source§

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

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

impl Mul<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul for IVec2

§

type Output = IVec2

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<i32> for IVec2

source§

fn mul_assign(&mut self, rhs: i32)

Performs the *= operation. Read more
source§

impl MulAssign for IVec2

source§

fn mul_assign(&mut self, rhs: IVec2)

Performs the *= operation. Read more
source§

impl Neg for IVec2

§

type Output = IVec2

The resulting type after applying the - operator.
source§

fn neg(self) -> IVec2

Performs the unary - operation. Read more
source§

impl Not for IVec2

§

type Output = IVec2

The resulting type after applying the ! operator.
source§

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

Performs the unary ! operation. Read more
source§

impl PartialEq for IVec2

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

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

source§

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

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

impl Product for IVec2

source§

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

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

impl Reflect for IVec2

source§

fn get_represented_type_info(&self) -> Option<&'static TypeInfo>

Returns the TypeInfo of the type represented by this value. Read more
source§

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

Returns the value as a Box<dyn Any>.
source§

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

Returns the value as a &dyn Any.
source§

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

Returns the value as a &mut dyn Any.
source§

fn into_reflect(self: Box<IVec2>) -> Box<dyn Reflect>

Casts this type to a boxed reflected value.
source§

fn as_reflect(&self) -> &(dyn Reflect + 'static)

Casts this type to a reflected value.
source§

fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)

Casts this type to a mutable reflected value.
source§

fn clone_value(&self) -> Box<dyn Reflect>

Clones the value as a Reflect trait object. Read more
source§

fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>

Performs a type-checked assignment of a reflected value to this value. Read more
source§

fn apply(&mut self, value: &(dyn Reflect + 'static))

Applies a reflected value to this value. Read more
source§

fn reflect_kind(&self) -> ReflectKind

Returns a zero-sized enumeration of “kinds” of type. Read more
source§

fn reflect_ref(&self) -> ReflectRef<'_>

Returns an immutable enumeration of “kinds” of type. Read more
source§

fn reflect_mut(&mut self) -> ReflectMut<'_>

Returns a mutable enumeration of “kinds” of type. Read more
source§

fn reflect_owned(self: Box<IVec2>) -> ReflectOwned

Returns an owned enumeration of “kinds” of type. Read more
source§

fn reflect_hash(&self) -> Option<u64>

Returns a hash of the value (which includes the type). Read more
source§

fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>

Returns a “partial equality” comparison result. Read more
source§

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

Debug formatter for the value. Read more
source§

fn serializable(&self) -> Option<Serializable<'_>>

Returns a serializable version of the value. Read more
source§

fn is_dynamic(&self) -> bool

Indicates whether or not this type is a dynamic type. Read more
source§

impl Rem<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem for IVec2

§

type Output = IVec2

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<i32> for IVec2

source§

fn rem_assign(&mut self, rhs: i32)

Performs the %= operation. Read more
source§

impl RemAssign for IVec2

source§

fn rem_assign(&mut self, rhs: IVec2)

Performs the %= operation. Read more
source§

impl Serialize for IVec2

source§

fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Shl<IVec2> for I16Vec2

§

type Output = I16Vec2

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

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

Performs the << operation. Read more
source§

impl Shl<IVec2> for I64Vec2

§

type Output = I64Vec2

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

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

Performs the << operation. Read more
source§

impl Shl<IVec2> for U16Vec2

§

type Output = U16Vec2

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

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

Performs the << operation. Read more
source§

impl Shl<IVec2> for U64Vec2

§

type Output = U64Vec2

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

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

Performs the << operation. Read more
source§

impl Shl<IVec2> for UVec2

§

type Output = UVec2

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

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

Performs the << operation. Read more
source§

impl Shl<UVec2> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<i16> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<i32> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<i64> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<i8> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<u16> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<u32> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<u64> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl<u8> for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shl for IVec2

§

type Output = IVec2

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

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

Performs the << operation. Read more
source§

impl Shr<IVec2> for I16Vec2

§

type Output = I16Vec2

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

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

Performs the >> operation. Read more
source§

impl Shr<IVec2> for I64Vec2

§

type Output = I64Vec2

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

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

Performs the >> operation. Read more
source§

impl Shr<IVec2> for U16Vec2

§

type Output = U16Vec2

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

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

Performs the >> operation. Read more
source§

impl Shr<IVec2> for U64Vec2

§

type Output = U64Vec2

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

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

Performs the >> operation. Read more
source§

impl Shr<IVec2> for UVec2

§

type Output = UVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<UVec2> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<i16> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<i32> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<i64> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<i8> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<u16> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<u32> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<u64> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr<u8> for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Shr for IVec2

§

type Output = IVec2

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

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

Performs the >> operation. Read more
source§

impl Struct for IVec2

source§

fn field(&self, name: &str) -> Option<&(dyn Reflect + 'static)>

Returns a reference to the value of the field named name as a &dyn Reflect.
source§

fn field_mut(&mut self, name: &str) -> Option<&mut (dyn Reflect + 'static)>

Returns a mutable reference to the value of the field named name as a &mut dyn Reflect.
source§

fn field_at(&self, index: usize) -> Option<&(dyn Reflect + 'static)>

Returns a reference to the value of the field with index index as a &dyn Reflect.
source§

fn field_at_mut(&mut self, index: usize) -> Option<&mut (dyn Reflect + 'static)>

Returns a mutable reference to the value of the field with index index as a &mut dyn Reflect.
source§

fn name_at(&self, index: usize) -> Option<&str>

Returns the name of the field with index index.
source§

fn field_len(&self) -> usize

Returns the number of fields in the struct.
source§

fn iter_fields(&self) -> FieldIter<'_>

Returns an iterator over the values of the reflectable fields for this struct.
source§

fn clone_dynamic(&self) -> DynamicStruct

Clones the struct into a DynamicStruct.
source§

impl Sub<i32> for IVec2

§

type Output = IVec2

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub for IVec2

§

type Output = IVec2

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<i32> for IVec2

source§

fn sub_assign(&mut self, rhs: i32)

Performs the -= operation. Read more
source§

impl SubAssign for IVec2

source§

fn sub_assign(&mut self, rhs: IVec2)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum for IVec2

source§

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

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

impl TryFrom<I64Vec2> for IVec2

§

type Error = TryFromIntError

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

fn try_from(v: I64Vec2) -> Result<IVec2, <IVec2 as TryFrom<I64Vec2>>::Error>

Performs the conversion.
source§

impl TryFrom<IVec2> for I16Vec2

§

type Error = TryFromIntError

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

fn try_from(v: IVec2) -> Result<I16Vec2, <I16Vec2 as TryFrom<IVec2>>::Error>

Performs the conversion.
source§

impl TryFrom<IVec2> for U16Vec2

§

type Error = TryFromIntError

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

fn try_from(v: IVec2) -> Result<U16Vec2, <U16Vec2 as TryFrom<IVec2>>::Error>

Performs the conversion.
source§

impl TryFrom<IVec2> for U64Vec2

§

type Error = TryFromIntError

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

fn try_from(v: IVec2) -> Result<U64Vec2, <U64Vec2 as TryFrom<IVec2>>::Error>

Performs the conversion.
source§

impl TryFrom<IVec2> for UVec2

§

type Error = TryFromIntError

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

fn try_from(v: IVec2) -> Result<UVec2, <UVec2 as TryFrom<IVec2>>::Error>

Performs the conversion.
source§

impl TryFrom<U64Vec2> for IVec2

§

type Error = TryFromIntError

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

fn try_from(v: U64Vec2) -> Result<IVec2, <IVec2 as TryFrom<U64Vec2>>::Error>

Performs the conversion.
source§

impl TryFrom<UVec2> for IVec2

§

type Error = TryFromIntError

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

fn try_from(v: UVec2) -> Result<IVec2, <IVec2 as TryFrom<UVec2>>::Error>

Performs the conversion.
source§

impl TypePath for IVec2
where IVec2: Any + Send + Sync,

source§

fn type_path() -> &'static str

Returns the fully qualified path of the underlying type. Read more
source§

fn short_type_path() -> &'static str

Returns a short, pretty-print enabled path to the type. Read more
source§

fn type_ident() -> Option<&'static str>

Returns the name of the type, or None if it is anonymous. Read more
source§

fn crate_name() -> Option<&'static str>

Returns the name of the crate the type is in, or None if it is anonymous. Read more
source§

fn module_path() -> Option<&'static str>

Returns the path to the module the type is in, or None if it is anonymous. Read more
source§

impl Typed for IVec2

source§

fn type_info() -> &'static TypeInfo

Returns the compile-time info for the underlying type.
source§

impl Vec2Swizzles for IVec2

§

type Vec3 = IVec3

§

type Vec4 = IVec4

source§

fn xx(self) -> IVec2

source§

fn xy(self) -> IVec2

source§

fn yx(self) -> IVec2

source§

fn yy(self) -> IVec2

source§

fn xxx(self) -> IVec3

source§

fn xxy(self) -> IVec3

source§

fn xyx(self) -> IVec3

source§

fn xyy(self) -> IVec3

source§

fn yxx(self) -> IVec3

source§

fn yxy(self) -> IVec3

source§

fn yyx(self) -> IVec3

source§

fn yyy(self) -> IVec3

source§

fn xxxx(self) -> IVec4

source§

fn xxxy(self) -> IVec4

source§

fn xxyx(self) -> IVec4

source§

fn xxyy(self) -> IVec4

source§

fn xyxx(self) -> IVec4

source§

fn xyxy(self) -> IVec4

source§

fn xyyx(self) -> IVec4

source§

fn xyyy(self) -> IVec4

source§

fn yxxx(self) -> IVec4

source§

fn yxxy(self) -> IVec4

source§

fn yxyx(self) -> IVec4

source§

fn yxyy(self) -> IVec4

source§

fn yyxx(self) -> IVec4

source§

fn yyxy(self) -> IVec4

source§

fn yyyx(self) -> IVec4

source§

fn yyyy(self) -> IVec4

source§

impl Zeroable for IVec2

source§

fn zeroed() -> Self

source§

impl Copy for IVec2

source§

impl Eq for IVec2

source§

impl Pod for IVec2

source§

impl StructuralPartialEq for IVec2

Auto Trait Implementations§

§

impl Freeze for IVec2

§

impl RefUnwindSafe for IVec2

§

impl Send for IVec2

§

impl Sync for IVec2

§

impl Unpin for IVec2

§

impl UnwindSafe for IVec2

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

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

§

type Bits = T

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

fn is_valid_bit_pattern(_bits: &T) -> bool

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

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

source§

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

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

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

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

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

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
source§

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

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

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

source§

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

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

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

source§

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

Casts the type to dyn Any.
source§

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

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

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

source§

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

Casts the type to dyn Any.
source§

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

Feeds this value into the given Hasher.
source§

impl<T> DynamicTypePath for T
where T: TypePath,

source§

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

source§

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

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

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

source§

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

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

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

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

Creates Self using data from the given World.
source§

impl<S> GetField for S
where S: Struct,

source§

fn get_field<T>(&self, name: &str) -> Option<&T>
where T: Reflect,

Returns a reference to the value of the field named name, downcast to T.
source§

fn get_field_mut<T>(&mut self, name: &str) -> Option<&mut T>
where T: Reflect,

Returns a mutable reference to the value of the field named name, downcast to T.
source§

impl<T> GetPath for T
where T: Reflect + ?Sized,

source§

fn reflect_path<'p>( &self, path: impl ReflectPath<'p> ) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>

Returns a reference to the value specified by path. Read more
source§

fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p> ) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>

Returns a mutable reference to the value specified by path. Read more
source§

fn path<'p, T>( &self, path: impl ReflectPath<'p> ) -> Result<&T, ReflectPathError<'p>>
where T: Reflect,

Returns a statically typed reference to the value specified by path. Read more
source§

fn path_mut<'p, T>( &mut self, path: impl ReflectPath<'p> ) -> Result<&mut T, ReflectPathError<'p>>
where T: Reflect,

Returns a statically typed mutable reference to the value specified by path. Read more
source§

impl<T> Instrument for T

source§

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

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

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

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

source§

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

source§

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

source§

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

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

source§

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

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

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

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

Performs the conversion.
source§

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

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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

source§

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

source§

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