Struct bones_framework::prelude::f64::DVec2

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

A 2-dimensional vector.

Fields§

§x: f64§y: f64

Implementations§

source§

impl DVec2

source

pub const ZERO: DVec2 = _

All zeroes.

source

pub const ONE: DVec2 = _

All ones.

source

pub const NEG_ONE: DVec2 = _

All negative ones.

source

pub const MIN: DVec2 = _

All f64::MIN.

source

pub const MAX: DVec2 = _

All f64::MAX.

source

pub const NAN: DVec2 = _

All f64::NAN.

source

pub const INFINITY: DVec2 = _

All f64::INFINITY.

source

pub const NEG_INFINITY: DVec2 = _

All f64::NEG_INFINITY.

source

pub const X: DVec2 = _

A unit vector pointing along the positive X axis.

source

pub const Y: DVec2 = _

A unit vector pointing along the positive Y axis.

source

pub const NEG_X: DVec2 = _

A unit vector pointing along the negative X axis.

source

pub const NEG_Y: DVec2 = _

A unit vector pointing along the negative Y axis.

source

pub const AXES: [DVec2; 2] = _

The unit axes.

source

pub const fn new(x: f64, y: f64) -> DVec2

Creates a new vector.

source

pub const fn splat(v: f64) -> DVec2

Creates a vector with all elements set to v.

source

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

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: [f64; 2]) -> DVec2

Creates a new vector from an array.

source

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

[x, y]

source

pub const fn from_slice(slice: &[f64]) -> DVec2

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

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: f64) -> DVec3

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

source

pub fn dot(self, rhs: DVec2) -> f64

Computes the dot product of self and rhs.

source

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

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

source

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

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

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

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

Returns the horizontal minimum of self.

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

source

pub fn max_element(self) -> f64

Returns the horizontal maximum of self.

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

source

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

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

source

pub fn signum(self) -> DVec2

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 copysign(self, rhs: DVec2) -> DVec2

Returns a vector with signs of rhs and the magnitudes of self.

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 is_finite(self) -> bool

Returns true if, and only if, all elements are finite. If any element is either NaN, positive or negative infinity, this will return false.

source

pub fn is_nan(self) -> bool

Returns true if any elements are NaN.

source

pub fn is_nan_mask(self) -> BVec2

Performs is_nan on each element of self, returning a vector mask of the results.

In other words, this computes [x.is_nan(), y.is_nan(), z.is_nan(), w.is_nan()].

source

pub fn length(self) -> f64

Computes the length of self.

source

pub fn length_squared(self) -> f64

Computes the squared length of self.

This is faster than length() as it avoids a square root operation.

source

pub fn length_recip(self) -> f64

Computes 1.0 / length().

For valid results, self must not be of length zero.

source

pub fn distance(self, rhs: DVec2) -> f64

Computes the Euclidean distance between two points in space.

source

pub fn distance_squared(self, rhs: DVec2) -> f64

Compute the squared euclidean distance between two points in space.

source

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

Returns the element-wise quotient of [Euclidean division] of self by rhs.

source

pub fn rem_euclid(self, rhs: DVec2) -> DVec2

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

source

pub fn normalize(self) -> DVec2

Returns self normalized to length 1.0.

For valid results, self must not be of length zero, nor very close to zero.

See also Self::try_normalize() and Self::normalize_or_zero().

Panics

Will panic if self is zero length when glam_assert is enabled.

source

pub fn try_normalize(self) -> Option<DVec2>

Returns self normalized to length 1.0 if possible, else returns None.

In particular, if the input is zero (or very close to zero), or non-finite, the result of this operation will be None.

See also Self::normalize_or_zero().

source

pub fn normalize_or_zero(self) -> DVec2

Returns self normalized to length 1.0 if possible, else returns zero.

In particular, if the input is zero (or very close to zero), or non-finite, the result of this operation will be zero.

See also Self::try_normalize().

source

pub fn is_normalized(self) -> bool

Returns whether self is length 1.0 or not.

Uses a precision threshold of 1e-6.

source

pub fn project_onto(self, rhs: DVec2) -> DVec2

Returns the vector projection of self onto rhs.

rhs must be of non-zero length.

§Panics

Will panic if rhs is zero length when glam_assert is enabled.

source

pub fn reject_from(self, rhs: DVec2) -> DVec2

Returns the vector rejection of self from rhs.

The vector rejection is the vector perpendicular to the projection of self onto rhs, in rhs words the result of self - self.project_onto(rhs).

rhs must be of non-zero length.

§Panics

Will panic if rhs has a length of zero when glam_assert is enabled.

source

pub fn project_onto_normalized(self, rhs: DVec2) -> DVec2

Returns the vector projection of self onto rhs.

rhs must be normalized.

§Panics

Will panic if rhs is not normalized when glam_assert is enabled.

source

pub fn reject_from_normalized(self, rhs: DVec2) -> DVec2

Returns the vector rejection of self from rhs.

The vector rejection is the vector perpendicular to the projection of self onto rhs, in rhs words the result of self - self.project_onto(rhs).

rhs must be normalized.

§Panics

Will panic if rhs is not normalized when glam_assert is enabled.

source

pub fn round(self) -> DVec2

Returns a vector containing the nearest integer to a number for each element of self. Round half-way cases away from 0.0.

source

pub fn floor(self) -> DVec2

Returns a vector containing the largest integer less than or equal to a number for each element of self.

source

pub fn ceil(self) -> DVec2

Returns a vector containing the smallest integer greater than or equal to a number for each element of self.

source

pub fn trunc(self) -> DVec2

Returns a vector containing the integer part each element of self. This means numbers are always truncated towards zero.

source

pub fn fract(self) -> DVec2

Returns a vector containing the fractional part of the vector, e.g. self - self.floor().

Note that this is fast but not precise for large numbers.

source

pub fn exp(self) -> DVec2

Returns a vector containing e^self (the exponential function) for each element of self.

source

pub fn powf(self, n: f64) -> DVec2

Returns a vector containing each element of self raised to the power of n.

source

pub fn recip(self) -> DVec2

Returns a vector containing the reciprocal 1.0/n of each element of self.

source

pub fn lerp(self, rhs: DVec2, s: f64) -> DVec2

Performs a linear interpolation between self and rhs based on the value s.

When s is 0.0, the result will be equal to self. When s is 1.0, the result will be equal to rhs. When s is outside of range [0, 1], the result is linearly extrapolated.

source

pub fn abs_diff_eq(self, rhs: DVec2, max_abs_diff: f64) -> bool

Returns true if the absolute difference of all elements between self and rhs is less than or equal to max_abs_diff.

This can be used to compare if two vectors contain similar elements. It works best when comparing with a known value. The max_abs_diff that should be used used depends on the values being compared against.

For more see comparing floating point numbers.

source

pub fn clamp_length(self, min: f64, max: f64) -> DVec2

Returns a vector with a length no less than min and no more than max

§Panics

Will panic if min is greater than max when glam_assert is enabled.

source

pub fn clamp_length_max(self, max: f64) -> DVec2

Returns a vector with a length no more than max

source

pub fn clamp_length_min(self, min: f64) -> DVec2

Returns a vector with a length no less than min

source

pub fn mul_add(self, a: DVec2, b: DVec2) -> DVec2

Fused multiply-add. Computes (self * a) + b element-wise with only one rounding error, yielding a more accurate result than an unfused multiply-add.

Using mul_add may be more performant than an unfused multiply-add if the target architecture has a dedicated fma CPU instruction. However, this is not always true, and will be heavily dependant on designing algorithms with specific target hardware in mind.

source

pub fn from_angle(angle: f64) -> DVec2

Creates a 2D vector containing [angle.cos(), angle.sin()]. This can be used in conjunction with the rotate() method, e.g. DVec2::from_angle(PI).rotate(DVec2::Y) will create the vector [-1, 0] and rotate DVec2::Y around it returning -DVec2::Y.

source

pub fn angle_between(self, rhs: DVec2) -> f64

Returns the angle (in radians) between self and rhs in the range [-π, +π].

The inputs do not need to be unit vectors however they must be non-zero.

source

pub fn perp(self) -> DVec2

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

source

pub fn perp_dot(self, rhs: DVec2) -> f64

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

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

Casts all elements of self to i32.

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.

Trait Implementations§

source§

impl Add<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the + operator.
source§

fn add(self, rhs: f64) -> DVec2

Performs the + operation. Read more
source§

impl Add for DVec2

§

type Output = DVec2

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<f64> for DVec2

source§

fn add_assign(&mut self, rhs: f64)

Performs the += operation. Read more
source§

impl AddAssign for DVec2

source§

fn add_assign(&mut self, rhs: DVec2)

Performs the += operation. Read more
source§

impl AsMut<[f64; 2]> for DVec2

source§

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

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

impl AsRef<[f64; 2]> for DVec2

source§

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

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

impl Clone for DVec2

source§

fn clone(&self) -> DVec2

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 DVec2

source§

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

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

impl Default for DVec2

source§

fn default() -> DVec2

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

impl<'de> Deserialize<'de> for DVec2

source§

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

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

impl Display for DVec2

source§

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

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

impl Div<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the / operator.
source§

fn div(self, rhs: f64) -> DVec2

Performs the / operation. Read more
source§

impl Div for DVec2

§

type Output = DVec2

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<f64> for DVec2

source§

fn div_assign(&mut self, rhs: f64)

Performs the /= operation. Read more
source§

impl DivAssign for DVec2

source§

fn div_assign(&mut self, rhs: DVec2)

Performs the /= operation. Read more
source§

impl From<[f64; 2]> for DVec2

source§

fn from(a: [f64; 2]) -> DVec2

Converts to this type from the input type.
source§

impl From<(f64, f64)> for DVec2

source§

fn from(t: (f64, f64)) -> DVec2

Converts to this type from the input type.
source§

impl From<DVec2> for [f64; 2]

source§

fn from(v: DVec2) -> [f64; 2]

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<UVec2> for DVec2

source§

fn from(v: UVec2) -> DVec2

Converts to this type from the input type.
source§

impl From<Vec2> for DVec2

source§

fn from(v: Vec2) -> DVec2

Converts to this type from the input type.
§

impl HasSchema for DVec2

§

fn schema() -> &'static Schema

Get this type’s [Schema].
§

fn register_schema()

Register this schema with the global schema registry. Read more
§

fn cast<T>(this: &Self) -> &T
where T: HasSchema,

Cast a reference of this type to a reference of another type with the same memory layout. Read more
§

fn try_cast<T>(this: &Self) -> Result<&T, SchemaMismatchError>
where T: HasSchema,

Cast a reference of this type to a reference of another type with the same memory layout. Read more
§

fn cast_mut<T>(this: &mut Self) -> &mut T
where T: HasSchema,

Cast a mutable reference of this type to a reference of another type with the same memory layout. Read more
§

fn try_cast_mut<T>(this: &mut Self) -> Result<&mut T, SchemaMismatchError>
where T: HasSchema,

Cast a mutable reference of this type to a reference of another type with the same memory layout. Read more
§

fn as_schema_ref(&self) -> SchemaRef<'_>
where Self: Sized,

Converts a reference of T to a SchemaRef
§

fn as_schema_mut(&mut self) -> SchemaRefMut<'_>
where Self: Sized,

Converts a reference of T to a SchemaRefMut
source§

impl Index<usize> for DVec2

§

type Output = f64

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for DVec2

source§

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

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

impl Mul<DVec2> for DMat2

§

type Output = DVec2

The resulting type after applying the * operator.
source§

fn mul(self, rhs: DVec2) -> <DMat2 as Mul<DVec2>>::Output

Performs the * operation. Read more
source§

impl Mul<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f64) -> DVec2

Performs the * operation. Read more
source§

impl Mul for DVec2

§

type Output = DVec2

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<f64> for DVec2

source§

fn mul_assign(&mut self, rhs: f64)

Performs the *= operation. Read more
source§

impl MulAssign for DVec2

source§

fn mul_assign(&mut self, rhs: DVec2)

Performs the *= operation. Read more
source§

impl Neg for DVec2

§

type Output = DVec2

The resulting type after applying the - operator.
source§

fn neg(self) -> DVec2

Performs the unary - operation. Read more
source§

impl PartialEq for DVec2

source§

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

source§

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

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

impl Product for DVec2

source§

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

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

impl Rem<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the % operator.
source§

fn rem(self, rhs: f64) -> DVec2

Performs the % operation. Read more
source§

impl Rem for DVec2

§

type Output = DVec2

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<f64> for DVec2

source§

fn rem_assign(&mut self, rhs: f64)

Performs the %= operation. Read more
source§

impl RemAssign for DVec2

source§

fn rem_assign(&mut self, rhs: DVec2)

Performs the %= operation. Read more
source§

impl Serialize for DVec2

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 Sub<f64> for DVec2

§

type Output = DVec2

The resulting type after applying the - operator.
source§

fn sub(self, rhs: f64) -> DVec2

Performs the - operation. Read more
source§

impl Sub for DVec2

§

type Output = DVec2

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<f64> for DVec2

source§

fn sub_assign(&mut self, rhs: f64)

Performs the -= operation. Read more
source§

impl SubAssign for DVec2

source§

fn sub_assign(&mut self, rhs: DVec2)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum for DVec2

source§

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

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

impl Vec2Swizzles for DVec2

§

type Vec3 = DVec3

§

type Vec4 = DVec4

source§

fn xx(self) -> DVec2

source§

fn xy(self) -> DVec2

source§

fn yx(self) -> DVec2

source§

fn yy(self) -> DVec2

source§

fn xxx(self) -> DVec3

source§

fn xxy(self) -> DVec3

source§

fn xyx(self) -> DVec3

source§

fn xyy(self) -> DVec3

source§

fn yxx(self) -> DVec3

source§

fn yxy(self) -> DVec3

source§

fn yyx(self) -> DVec3

source§

fn yyy(self) -> DVec3

source§

fn xxxx(self) -> DVec4

source§

fn xxxy(self) -> DVec4

source§

fn xxyx(self) -> DVec4

source§

fn xxyy(self) -> DVec4

source§

fn xyxx(self) -> DVec4

source§

fn xyxy(self) -> DVec4

source§

fn xyyx(self) -> DVec4

source§

fn xyyy(self) -> DVec4

source§

fn yxxx(self) -> DVec4

source§

fn yxxy(self) -> DVec4

source§

fn yxyx(self) -> DVec4

source§

fn yxyy(self) -> DVec4

source§

fn yyxx(self) -> DVec4

source§

fn yyxy(self) -> DVec4

source§

fn yyyx(self) -> DVec4

source§

fn yyyy(self) -> DVec4

source§

impl Zeroable for DVec2

§

fn zeroed() -> Self

source§

impl Copy for DVec2

source§

impl Pod for DVec2

source§

impl StructuralPartialEq for DVec2

Auto Trait Implementations§

§

impl Freeze for DVec2

§

impl RefUnwindSafe for DVec2

§

impl Send for DVec2

§

impl Sync for DVec2

§

impl Unpin for DVec2

§

impl UnwindSafe for DVec2

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
§

impl<T> AnyEq for T
where T: Any + PartialEq,

§

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

§

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

§

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

§

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

§

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

§

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

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
§

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

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

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

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

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

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

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

impl<T> Conv for T

§

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

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

impl<T> FmtForward for T

§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

source§

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

source§

fn from_world(_world: &World) -> T

Creates Self using data from the given World.
§

impl<T> Instrument for T

§

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

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for 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.

§

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

§

fn into_sample(self) -> T

§

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

§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

§

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

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

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

Get a callback suitable for [SchemaData].
§

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

§

unsafe fn raw_default(dst: *mut c_void)

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

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

Get a callback suitable for [SchemaData].
§

impl<T> RawDrop for T

§

unsafe fn raw_drop(ptr: *mut c_void)

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

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

Get a callback suitable for [SchemaData].
source§

impl<T> Same for T

§

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<(), Error>

source§

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

§

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

§

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

§

impl<T> Tap for T

§

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

Immutable access to a value. Read more
§

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

Mutable access to a value. Read more
§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<T> ToOwned for 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
§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

§

fn to_sample_(self) -> U

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
§

impl<T> TryConv for T

§

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

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for 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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

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

source§

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

§

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

§

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

§

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