IVec2

Struct 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 X: IVec2

A unit-length vector pointing along the positive X axis.

Source

pub const Y: IVec2

A unit-length vector pointing along the positive Y axis.

Source

pub const NEG_X: IVec2

A unit-length vector pointing along the negative X axis.

Source

pub const NEG_Y: IVec2

A unit-length 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 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.

  • 1.0 if the number is positive, +0.0 or INFINITY
  • -1.0 if the number is negative, -0.0 or NEG_INFINITY
  • NAN if the number is NAN
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_uvec2(&self) -> UVec2

Casts all elements of self to u32.

Trait Implementations§

Source§

impl Add<i32> for IVec2

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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 FromReflect for IVec2

Source§

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

Constructs a concrete instance of Self from a reflected value.
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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

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

Source§

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

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

impl Reflect for IVec2

Source§

fn type_name(&self) -> &str

Returns the type name of the underlying type.
Source§

fn get_type_info(&self) -> &'static TypeInfo

Returns the TypeInfo of the underlying type. 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 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_ref(&self) -> ReflectRef<'_>

Returns an 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_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 reflect_hash(&self) -> Option<u64>

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

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

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

impl Rem<i32> for IVec2

Source§

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

Source§

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 UVec2

Source§

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

Source§

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

Source§

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

Source§

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<i8> for IVec2

Source§

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

Source§

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

Source§

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<u8> for IVec2

Source§

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

Source§

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 UVec2

Source§

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

Source§

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

Source§

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

Source§

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<i8> for IVec2

Source§

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

Source§

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

Source§

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<u8> for IVec2

Source§

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

Source§

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 struct’s fields.
Source§

fn clone_dynamic(&self) -> DynamicStruct

Clones the struct into a DynamicStruct.
Source§

impl Sub<i32> for IVec2

Source§

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

Source§

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

Takes an iterator and generates Self from the elements by “summing up” the items.
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

Source§

type Vec3 = IVec3

Source§

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> CallHasher for T
where T: Hash + ?Sized,

Source§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

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>

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 + 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<T> DynEq for T
where T: Any + Eq,

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

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

Source§

fn path<'r, 'p>( &'r self, path: &'p str, ) -> Result<&'r (dyn Reflect + 'static), ReflectPathError<'p>>

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

fn path_mut<'r, 'p>( &'r mut self, path: &'p str, ) -> Result<&'r mut (dyn Reflect + 'static), ReflectPathError<'p>>

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

fn get_path<'r, 'p, T>( &'r self, path: &'p str, ) -> Result<&'r T, ReflectPathError<'p>>
where T: Reflect,

Returns a statically typed reference to the value specified by path.
Source§

fn get_path_mut<'r, 'p, T>( &'r mut self, path: &'p str, ) -> Result<&'r mut T, ReflectPathError<'p>>
where T: Reflect,

Returns a statically typed mutable reference to the value specified by path.
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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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

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> 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<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> Dep for T
where T: 'static + PartialEq + Clone,

Source§

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

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

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

Source§

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

Source§

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

Source§

impl<T> StateData for T
where T: Send + Sync + Clone + Eq + Debug + Hash + 'static,