Struct bevy::math::DVec3

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

A 3-dimensional vector.

Fields§

§x: f64§y: f64§z: f64

Implementations§

source§

impl DVec3

source

pub const ZERO: DVec3 = _

All zeroes.

source

pub const ONE: DVec3 = _

All ones.

source

pub const NEG_ONE: DVec3 = _

All negative ones.

source

pub const MIN: DVec3 = _

All f64::MIN.

source

pub const MAX: DVec3 = _

All f64::MAX.

source

pub const NAN: DVec3 = _

All f64::NAN.

source

pub const INFINITY: DVec3 = _

All f64::INFINITY.

source

pub const NEG_INFINITY: DVec3 = _

All f64::NEG_INFINITY.

source

pub const X: DVec3 = _

A unit vector pointing along the positive X axis.

source

pub const Y: DVec3 = _

A unit vector pointing along the positive Y axis.

source

pub const Z: DVec3 = _

A unit vector pointing along the positive Z axis.

source

pub const NEG_X: DVec3 = _

A unit vector pointing along the negative X axis.

source

pub const NEG_Y: DVec3 = _

A unit vector pointing along the negative Y axis.

source

pub const NEG_Z: DVec3 = _

A unit vector pointing along the negative Z axis.

source

pub const AXES: [DVec3; 3] = _

The unit axes.

source

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

Creates a new vector.

Examples found in repository?
examples/stress_tests/many_cubes.rs (line 438)
435
436
437
438
439
fn spherical_polar_to_cartesian(p: DVec2) -> DVec3 {
    let (sin_theta, cos_theta) = p.x.sin_cos();
    let (sin_phi, cos_phi) = p.y.sin_cos();
    DVec3::new(cos_theta * sin_phi, sin_theta * sin_phi, cos_phi)
}
More examples
Hide additional examples
examples/stress_tests/many_lights.rs (line 136)
133
134
135
136
137
fn spherical_polar_to_cartesian(p: DVec2) -> DVec3 {
    let (sin_theta, cos_theta) = p.x.sin_cos();
    let (sin_phi, cos_phi) = p.y.sin_cos();
    DVec3::new(cos_theta * sin_phi, sin_theta * sin_phi, cos_phi)
}
source

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

Creates a vector with all elements set to v.

source

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

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; 3]) -> DVec3

Creates a new vector from an array.

source

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

[x, y, z]

source

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

Creates a vector from the first 3 values in slice.

§Panics

Panics if slice is less than 3 elements long.

source

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

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

§Panics

Panics if slice is less than 3 elements long.

source

pub fn extend(self, w: f64) -> DVec4

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

source

pub fn truncate(self) -> DVec2

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

Truncation may also be performed by using self.xy().

source

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

Computes the dot product of self and rhs.

source

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

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

source

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

Computes the cross product of self and rhs.

source

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

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

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

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

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

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

source

pub fn cmpne(self, rhs: DVec3) -> BVec3

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

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

source

pub fn cmpge(self, rhs: DVec3) -> BVec3

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

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

source

pub fn cmpgt(self, rhs: DVec3) -> BVec3

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

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

source

pub fn cmple(self, rhs: DVec3) -> BVec3

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

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

source

pub fn cmplt(self, rhs: DVec3) -> BVec3

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

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

source

pub fn abs(self) -> DVec3

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

source

pub fn signum(self) -> DVec3

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

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 3 bits set to the sign bits from the elements of self.

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

source

pub fn 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) -> BVec3

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

Computes the Euclidean distance between two points in space.

source

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

Compute the squared euclidean distance between two points in space.

source

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

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

source

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

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

source

pub fn normalize(self) -> DVec3

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

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

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

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

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

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

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

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

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

source

pub fn ceil(self) -> DVec3

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

source

pub fn trunc(self) -> DVec3

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

source

pub fn fract(self) -> DVec3

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

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

source

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

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

source

pub fn recip(self) -> DVec3

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

source

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

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

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

Returns a vector with a length no more than max

source

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

Returns a vector with a length no less than min

source

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

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 angle_between(self, rhs: DVec3) -> f64

Returns the angle (in radians) between two vectors.

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

source

pub fn any_orthogonal_vector(&self) -> DVec3

Returns some vector that is orthogonal to the given one.

The input vector must be finite and non-zero.

The output vector is not necessarily unit length. For that use Self::any_orthonormal_vector() instead.

source

pub fn any_orthonormal_vector(&self) -> DVec3

Returns any unit vector that is orthogonal to the given one.

The input vector must be unit length.

§Panics

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

source

pub fn any_orthonormal_pair(&self) -> (DVec3, DVec3)

Given a unit vector return two other vectors that together form an orthonormal basis. That is, all three vectors are orthogonal to each other and are normalized.

§Panics

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

source

pub fn as_vec3(&self) -> Vec3

Casts all elements of self to f32.

Examples found in repository?
examples/stress_tests/many_lights.rs (line 88)
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
fn setup(
    mut commands: Commands,
    mut meshes: ResMut<Assets<Mesh>>,
    mut materials: ResMut<Assets<StandardMaterial>>,
) {
    warn!(include_str!("warning_string.txt"));

    const LIGHT_RADIUS: f32 = 0.3;
    const LIGHT_INTENSITY: f32 = 1000.0;
    const RADIUS: f32 = 50.0;
    const N_LIGHTS: usize = 100_000;

    commands.spawn(PbrBundle {
        mesh: meshes.add(Sphere::new(RADIUS).mesh().ico(9).unwrap()),
        material: materials.add(Color::WHITE),
        transform: Transform::from_scale(Vec3::NEG_ONE),
        ..default()
    });

    let mesh = meshes.add(Cuboid::default());
    let material = materials.add(StandardMaterial {
        base_color: DEEP_PINK.into(),
        ..default()
    });

    // NOTE: This pattern is good for testing performance of culling as it provides roughly
    // the same number of visible meshes regardless of the viewing angle.
    // NOTE: f64 is used to avoid precision issues that produce visual artifacts in the distribution
    let golden_ratio = 0.5f64 * (1.0f64 + 5.0f64.sqrt());

    // Spawn N_LIGHTS many lights
    commands.spawn_batch((0..N_LIGHTS).map(move |i| {
        let mut rng = thread_rng();

        let spherical_polar_theta_phi = fibonacci_spiral_on_sphere(golden_ratio, i, N_LIGHTS);
        let unit_sphere_p = spherical_polar_to_cartesian(spherical_polar_theta_phi);

        PointLightBundle {
            point_light: PointLight {
                range: LIGHT_RADIUS,
                intensity: LIGHT_INTENSITY,
                color: Color::hsl(rng.gen_range(0.0..360.0), 1.0, 0.5),
                ..default()
            },
            transform: Transform::from_translation((RADIUS as f64 * unit_sphere_p).as_vec3()),
            ..default()
        }
    }));

    // camera
    match std::env::args().nth(1).as_deref() {
        Some("orthographic") => commands.spawn(Camera3dBundle {
            projection: OrthographicProjection {
                scale: 20.0,
                scaling_mode: ScalingMode::FixedHorizontal(1.0),
                ..default()
            }
            .into(),
            ..default()
        }),
        _ => commands.spawn(Camera3dBundle::default()),
    };

    // add one cube, the only one with strong handles
    // also serves as a reference point during rotation
    commands.spawn(PbrBundle {
        mesh,
        material,
        transform: Transform {
            translation: Vec3::new(0.0, RADIUS, 0.0),
            scale: Vec3::splat(5.0),
            ..default()
        },
        ..default()
    });
}
More examples
Hide additional examples
examples/stress_tests/many_cubes.rs (line 161)
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
fn setup(
    mut commands: Commands,
    args: Res<Args>,
    mesh_assets: ResMut<Assets<Mesh>>,
    material_assets: ResMut<Assets<StandardMaterial>>,
    images: ResMut<Assets<Image>>,
) {
    warn!(include_str!("warning_string.txt"));

    let args = args.into_inner();
    let images = images.into_inner();
    let material_assets = material_assets.into_inner();
    let mesh_assets = mesh_assets.into_inner();

    let meshes = init_meshes(args, mesh_assets);

    let material_textures = init_textures(args, images);
    let materials = init_materials(args, &material_textures, material_assets);

    // We're seeding the PRNG here to make this example deterministic for testing purposes.
    // This isn't strictly required in practical use unless you need your app to be deterministic.
    let mut material_rng = ChaCha8Rng::seed_from_u64(42);
    match args.layout {
        Layout::Sphere => {
            // NOTE: This pattern is good for testing performance of culling as it provides roughly
            // the same number of visible meshes regardless of the viewing angle.
            const N_POINTS: usize = WIDTH * HEIGHT * 4;
            // NOTE: f64 is used to avoid precision issues that produce visual artifacts in the distribution
            let radius = WIDTH as f64 * 2.5;
            let golden_ratio = 0.5f64 * (1.0f64 + 5.0f64.sqrt());
            for i in 0..N_POINTS {
                let spherical_polar_theta_phi =
                    fibonacci_spiral_on_sphere(golden_ratio, i, N_POINTS);
                let unit_sphere_p = spherical_polar_to_cartesian(spherical_polar_theta_phi);
                let (mesh, transform) = meshes.choose(&mut material_rng).unwrap();
                let mut cube = commands.spawn(PbrBundle {
                    mesh: mesh.clone(),
                    material: materials.choose(&mut material_rng).unwrap().clone(),
                    transform: Transform::from_translation((radius * unit_sphere_p).as_vec3())
                        .looking_at(Vec3::ZERO, Vec3::Y)
                        .mul_transform(*transform),
                    ..default()
                });
                if args.no_frustum_culling {
                    cube.insert(NoFrustumCulling);
                }
                if args.no_automatic_batching {
                    cube.insert(NoAutomaticBatching);
                }
            }

            // camera
            commands.spawn(Camera3dBundle::default());
            // Inside-out box around the meshes onto which shadows are cast (though you cannot see them...)
            commands.spawn((
                PbrBundle {
                    mesh: mesh_assets.add(Cuboid::from_size(Vec3::splat(radius as f32 * 2.2))),
                    material: material_assets.add(StandardMaterial::from(Color::WHITE)),
                    transform: Transform::from_scale(-Vec3::ONE),
                    ..default()
                },
                NotShadowCaster,
            ));
        }
        _ => {
            // NOTE: This pattern is good for demonstrating that frustum culling is working correctly
            // as the number of visible meshes rises and falls depending on the viewing angle.
            let scale = 2.5;
            for x in 0..WIDTH {
                for y in 0..HEIGHT {
                    // introduce spaces to break any kind of moiré pattern
                    if x % 10 == 0 || y % 10 == 0 {
                        continue;
                    }
                    // cube
                    commands.spawn(PbrBundle {
                        mesh: meshes.choose(&mut material_rng).unwrap().0.clone(),
                        material: materials.choose(&mut material_rng).unwrap().clone(),
                        transform: Transform::from_xyz((x as f32) * scale, (y as f32) * scale, 0.0),
                        ..default()
                    });
                    commands.spawn(PbrBundle {
                        mesh: meshes.choose(&mut material_rng).unwrap().0.clone(),
                        material: materials.choose(&mut material_rng).unwrap().clone(),
                        transform: Transform::from_xyz(
                            (x as f32) * scale,
                            HEIGHT as f32 * scale,
                            (y as f32) * scale,
                        ),
                        ..default()
                    });
                    commands.spawn(PbrBundle {
                        mesh: meshes.choose(&mut material_rng).unwrap().0.clone(),
                        material: materials.choose(&mut material_rng).unwrap().clone(),
                        transform: Transform::from_xyz((x as f32) * scale, 0.0, (y as f32) * scale),
                        ..default()
                    });
                    commands.spawn(PbrBundle {
                        mesh: meshes.choose(&mut material_rng).unwrap().0.clone(),
                        material: materials.choose(&mut material_rng).unwrap().clone(),
                        transform: Transform::from_xyz(0.0, (x as f32) * scale, (y as f32) * scale),
                        ..default()
                    });
                }
            }
            // camera
            let center = 0.5 * scale * Vec3::new(WIDTH as f32, HEIGHT as f32, WIDTH as f32);
            commands.spawn(Camera3dBundle {
                transform: Transform::from_translation(center),
                ..default()
            });
            // Inside-out box around the meshes onto which shadows are cast (though you cannot see them...)
            commands.spawn((
                PbrBundle {
                    mesh: mesh_assets.add(Cuboid::from_size(2.0 * 1.1 * center)),
                    material: material_assets.add(StandardMaterial::from(Color::WHITE)),
                    transform: Transform::from_scale(-Vec3::ONE).with_translation(center),
                    ..default()
                },
                NotShadowCaster,
            ));
        }
    }

    commands.spawn(DirectionalLightBundle {
        directional_light: DirectionalLight {
            shadows_enabled: args.shadows,
            ..default()
        },
        transform: Transform::IDENTITY.looking_at(Vec3::new(0.0, -1.0, -1.0), Vec3::Y),
        ..default()
    });
}
source

pub fn as_vec3a(&self) -> Vec3A

Casts all elements of self to f32.

source

pub fn as_i16vec3(&self) -> I16Vec3

Casts all elements of self to i16.

source

pub fn as_u16vec3(&self) -> U16Vec3

Casts all elements of self to u16.

source

pub fn as_ivec3(&self) -> IVec3

Casts all elements of self to i32.

source

pub fn as_uvec3(&self) -> UVec3

Casts all elements of self to u32.

source

pub fn as_i64vec3(&self) -> I64Vec3

Casts all elements of self to i64.

source

pub fn as_u64vec3(&self) -> U64Vec3

Casts all elements of self to u64.

Trait Implementations§

source§

impl Add<f64> for DVec3

§

type Output = DVec3

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Add for DVec3

§

type Output = DVec3

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl AddAssign<f64> for DVec3

source§

fn add_assign(&mut self, rhs: f64)

Performs the += operation. Read more
source§

impl AddAssign for DVec3

source§

fn add_assign(&mut self, rhs: DVec3)

Performs the += operation. Read more
§

impl Animatable for DVec3

§

fn interpolate(a: &DVec3, b: &DVec3, t: f32) -> DVec3

Interpolates between a and b with a interpolation factor of time. Read more
§

fn blend(inputs: impl Iterator<Item = BlendInput<DVec3>>) -> DVec3

Blends one or more values together. Read more
§

fn post_process(&mut self, _world: &World)

Post-processes the value using resources in the World. Most animatable types do not need to implement this.
source§

impl AsMut<[f64; 3]> for DVec3

Available on non-target_arch="spirv" only.
source§

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

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

impl AsRef<[f64; 3]> for DVec3

Available on non-target_arch="spirv" only.
source§

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

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

impl Clone for DVec3

source§

fn clone(&self) -> DVec3

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 DVec3

Available on non-target_arch="spirv" only.
source§

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

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

impl Default for DVec3

source§

fn default() -> DVec3

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

impl<'de> Deserialize<'de> for DVec3

source§

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

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

impl Display for DVec3

Available on non-target_arch="spirv" only.
source§

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

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

impl Div<f64> for DVec3

§

type Output = DVec3

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl Div for DVec3

§

type Output = DVec3

The resulting type after applying the / operator.
source§

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

Performs the / operation. Read more
source§

impl DivAssign<f64> for DVec3

source§

fn div_assign(&mut self, rhs: f64)

Performs the /= operation. Read more
source§

impl DivAssign for DVec3

source§

fn div_assign(&mut self, rhs: DVec3)

Performs the /= operation. Read more
source§

impl From<[f64; 3]> for DVec3

source§

fn from(a: [f64; 3]) -> DVec3

Converts to this type from the input type.
source§

impl From<(DVec2, f64)> for DVec3

source§

fn from(_: (DVec2, f64)) -> DVec3

Converts to this type from the input type.
source§

impl From<(f64, f64, f64)> for DVec3

source§

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

Converts to this type from the input type.
source§

impl From<DVec3> for [f64; 3]

source§

fn from(v: DVec3) -> [f64; 3]

Converts to this type from the input type.
source§

impl From<DVec3> for (f64, f64, f64)

source§

fn from(v: DVec3) -> (f64, f64, f64)

Converts to this type from the input type.
source§

impl From<IVec3> for DVec3

source§

fn from(v: IVec3) -> DVec3

Converts to this type from the input type.
source§

impl From<UVec3> for DVec3

source§

fn from(v: UVec3) -> DVec3

Converts to this type from the input type.
source§

impl From<Vec3> for DVec3

source§

fn from(v: Vec3) -> DVec3

Converts to this type from the input type.
§

impl FromReflect for DVec3
where DVec3: Any + Send + Sync, f64: FromReflect + TypePath + RegisterForReflection,

§

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

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

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
§

impl GetTypeRegistration for DVec3
where DVec3: Any + Send + Sync, f64: FromReflect + TypePath + RegisterForReflection,

§

fn get_type_registration() -> TypeRegistration

Returns the default TypeRegistration for this type.
§

fn register_type_dependencies(registry: &mut TypeRegistry)

Registers other types needed by this type. Read more
source§

impl Index<usize> for DVec3

§

type Output = f64

The returned type after indexing.
source§

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

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

impl IndexMut<usize> for DVec3

source§

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

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

impl Mul<DVec3> for DMat3

§

type Output = DVec3

The resulting type after applying the * operator.
source§

fn mul(self, rhs: DVec3) -> <DMat3 as Mul<DVec3>>::Output

Performs the * operation. Read more
source§

impl Mul<DVec3> for DQuat

source§

fn mul(self, rhs: DVec3) -> <DQuat as Mul<DVec3>>::Output

Multiplies a quaternion and a 3D vector, returning the rotated vector.

§Panics

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

§

type Output = DVec3

The resulting type after applying the * operator.
source§

impl Mul<f64> for DVec3

§

type Output = DVec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul for DVec3

§

type Output = DVec3

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl MulAssign<f64> for DVec3

source§

fn mul_assign(&mut self, rhs: f64)

Performs the *= operation. Read more
source§

impl MulAssign for DVec3

source§

fn mul_assign(&mut self, rhs: DVec3)

Performs the *= operation. Read more
source§

impl Neg for DVec3

§

type Output = DVec3

The resulting type after applying the - operator.
source§

fn neg(self) -> DVec3

Performs the unary - operation. Read more
source§

impl PartialEq for DVec3

source§

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

source§

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

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

impl Product for DVec3

source§

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

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

impl Reflect for DVec3
where DVec3: Any + Send + Sync, f64: FromReflect + TypePath + RegisterForReflection,

§

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

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

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

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

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

Returns the value as a &dyn Any.
§

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

Returns the value as a &mut dyn Any.
§

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

Casts this type to a boxed reflected value.
§

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

Casts this type to a reflected value.
§

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

Casts this type to a mutable reflected value.
§

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

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

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
§

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

Applies a reflected value to this value. Read more
§

fn reflect_kind(&self) -> ReflectKind

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

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

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

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

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

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

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

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

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

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

Debug formatter for the value. Read more
§

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

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

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

Returns a serializable version of the value. Read more
§

fn is_dynamic(&self) -> bool

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

impl Rem<f64> for DVec3

§

type Output = DVec3

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl Rem for DVec3

§

type Output = DVec3

The resulting type after applying the % operator.
source§

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

Performs the % operation. Read more
source§

impl RemAssign<f64> for DVec3

source§

fn rem_assign(&mut self, rhs: f64)

Performs the %= operation. Read more
source§

impl RemAssign for DVec3

source§

fn rem_assign(&mut self, rhs: DVec3)

Performs the %= operation. Read more
source§

impl Serialize for DVec3

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
§

impl Struct for DVec3
where DVec3: Any + Send + Sync, f64: FromReflect + TypePath + RegisterForReflection,

§

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

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

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

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

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

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

Returns the name of the field with index index.
§

fn field_len(&self) -> usize

Returns the number of fields in the struct.
§

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

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

fn clone_dynamic(&self) -> DynamicStruct

Clones the struct into a DynamicStruct.
source§

impl Sub<f64> for DVec3

§

type Output = DVec3

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl Sub for DVec3

§

type Output = DVec3

The resulting type after applying the - operator.
source§

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

Performs the - operation. Read more
source§

impl SubAssign<f64> for DVec3

source§

fn sub_assign(&mut self, rhs: f64)

Performs the -= operation. Read more
source§

impl SubAssign for DVec3

source§

fn sub_assign(&mut self, rhs: DVec3)

Performs the -= operation. Read more
source§

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

source§

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

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

impl Sum for DVec3

source§

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

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

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

§

fn type_path() -> &'static str

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

fn short_type_path() -> &'static str

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

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

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

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

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

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

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

impl Typed for DVec3
where DVec3: Any + Send + Sync, f64: FromReflect + TypePath + RegisterForReflection,

§

fn type_info() -> &'static TypeInfo

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

impl Vec3Swizzles for DVec3

§

type Vec2 = DVec2

§

type Vec4 = DVec4

source§

fn xx(self) -> DVec2

source§

fn xy(self) -> DVec2

source§

fn xz(self) -> DVec2

source§

fn yx(self) -> DVec2

source§

fn yy(self) -> DVec2

source§

fn yz(self) -> DVec2

source§

fn zx(self) -> DVec2

source§

fn zy(self) -> DVec2

source§

fn zz(self) -> DVec2

source§

fn xxx(self) -> DVec3

source§

fn xxy(self) -> DVec3

source§

fn xxz(self) -> DVec3

source§

fn xyx(self) -> DVec3

source§

fn xyy(self) -> DVec3

source§

fn xyz(self) -> DVec3

source§

fn xzx(self) -> DVec3

source§

fn xzy(self) -> DVec3

source§

fn xzz(self) -> DVec3

source§

fn yxx(self) -> DVec3

source§

fn yxy(self) -> DVec3

source§

fn yxz(self) -> DVec3

source§

fn yyx(self) -> DVec3

source§

fn yyy(self) -> DVec3

source§

fn yyz(self) -> DVec3

source§

fn yzx(self) -> DVec3

source§

fn yzy(self) -> DVec3

source§

fn yzz(self) -> DVec3

source§

fn zxx(self) -> DVec3

source§

fn zxy(self) -> DVec3

source§

fn zxz(self) -> DVec3

source§

fn zyx(self) -> DVec3

source§

fn zyy(self) -> DVec3

source§

fn zyz(self) -> DVec3

source§

fn zzx(self) -> DVec3

source§

fn zzy(self) -> DVec3

source§

fn zzz(self) -> DVec3

source§

fn xxxx(self) -> DVec4

source§

fn xxxy(self) -> DVec4

source§

fn xxxz(self) -> DVec4

source§

fn xxyx(self) -> DVec4

source§

fn xxyy(self) -> DVec4

source§

fn xxyz(self) -> DVec4

source§

fn xxzx(self) -> DVec4

source§

fn xxzy(self) -> DVec4

source§

fn xxzz(self) -> DVec4

source§

fn xyxx(self) -> DVec4

source§

fn xyxy(self) -> DVec4

source§

fn xyxz(self) -> DVec4

source§

fn xyyx(self) -> DVec4

source§

fn xyyy(self) -> DVec4

source§

fn xyyz(self) -> DVec4

source§

fn xyzx(self) -> DVec4

source§

fn xyzy(self) -> DVec4

source§

fn xyzz(self) -> DVec4

source§

fn xzxx(self) -> DVec4

source§

fn xzxy(self) -> DVec4

source§

fn xzxz(self) -> DVec4

source§

fn xzyx(self) -> DVec4

source§

fn xzyy(self) -> DVec4

source§

fn xzyz(self) -> DVec4

source§

fn xzzx(self) -> DVec4

source§

fn xzzy(self) -> DVec4

source§

fn xzzz(self) -> DVec4

source§

fn yxxx(self) -> DVec4

source§

fn yxxy(self) -> DVec4

source§

fn yxxz(self) -> DVec4

source§

fn yxyx(self) -> DVec4

source§

fn yxyy(self) -> DVec4

source§

fn yxyz(self) -> DVec4

source§

fn yxzx(self) -> DVec4

source§

fn yxzy(self) -> DVec4

source§

fn yxzz(self) -> DVec4

source§

fn yyxx(self) -> DVec4

source§

fn yyxy(self) -> DVec4

source§

fn yyxz(self) -> DVec4

source§

fn yyyx(self) -> DVec4

source§

fn yyyy(self) -> DVec4

source§

fn yyyz(self) -> DVec4

source§

fn yyzx(self) -> DVec4

source§

fn yyzy(self) -> DVec4

source§

fn yyzz(self) -> DVec4

source§

fn yzxx(self) -> DVec4

source§

fn yzxy(self) -> DVec4

source§

fn yzxz(self) -> DVec4

source§

fn yzyx(self) -> DVec4

source§

fn yzyy(self) -> DVec4

source§

fn yzyz(self) -> DVec4

source§

fn yzzx(self) -> DVec4

source§

fn yzzy(self) -> DVec4

source§

fn yzzz(self) -> DVec4

source§

fn zxxx(self) -> DVec4

source§

fn zxxy(self) -> DVec4

source§

fn zxxz(self) -> DVec4

source§

fn zxyx(self) -> DVec4

source§

fn zxyy(self) -> DVec4

source§

fn zxyz(self) -> DVec4

source§

fn zxzx(self) -> DVec4

source§

fn zxzy(self) -> DVec4

source§

fn zxzz(self) -> DVec4

source§

fn zyxx(self) -> DVec4

source§

fn zyxy(self) -> DVec4

source§

fn zyxz(self) -> DVec4

source§

fn zyyx(self) -> DVec4

source§

fn zyyy(self) -> DVec4

source§

fn zyyz(self) -> DVec4

source§

fn zyzx(self) -> DVec4

source§

fn zyzy(self) -> DVec4

source§

fn zyzz(self) -> DVec4

source§

fn zzxx(self) -> DVec4

source§

fn zzxy(self) -> DVec4

source§

fn zzxz(self) -> DVec4

source§

fn zzyx(self) -> DVec4

source§

fn zzyy(self) -> DVec4

source§

fn zzyz(self) -> DVec4

source§

fn zzzx(self) -> DVec4

source§

fn zzzy(self) -> DVec4

source§

fn zzzz(self) -> DVec4

source§

impl Zeroable for DVec3

§

fn zeroed() -> Self

source§

impl Copy for DVec3

source§

impl Pod for DVec3

source§

impl StructuralPartialEq for DVec3

Auto Trait Implementations§

§

impl Freeze for DVec3

§

impl RefUnwindSafe for DVec3

§

impl Send for DVec3

§

impl Sync for DVec3

§

impl Unpin for DVec3

§

impl UnwindSafe for DVec3

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, U> AsBindGroupShaderType<U> for T
where U: ShaderType, &'a T: for<'a> Into<U>,

§

fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U

Return the T ShaderType for self. When used in AsBindGroup derives, it is safe to assume that all images in self exist.
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.
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

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

§

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

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

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

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

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

§

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

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

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

§

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

§

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

Creates Self using data from the given World.
§

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

§

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

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

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

§

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
§

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
§

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
§

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
§

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.

source§

impl<T> IntoEither for T

source§

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

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

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

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

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

§

fn into_sample(self) -> T

§

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

§

type NoneType = T

§

fn null_value() -> T

The none-equivalent value.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
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>

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

§

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

§

fn to_smolstr(&self) -> SmolStr

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

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

§

fn clone_type_data(&self) -> Box<dyn TypeData>

§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

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,

§

impl<T> ConditionalSend for T
where T: Send,

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> Settings for T
where T: 'static + Send + Sync,

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T
where T: WasmNotSend + WasmNotSync,

§

impl<T> WasmNotSync for T
where T: Sync,