Struct bevy_math::XYZ[][src]

#[repr(C)]pub struct XYZ<T> {
    pub x: T,
    pub y: T,
    pub z: T,
}

Fields

x: Ty: Tz: T

Trait Implementations

impl<T> Clone for XYZ<T> where
    T: Clone
[src]

impl<T> Copy for XYZ<T> where
    T: Copy
[src]

impl<T> Debug for XYZ<T> where
    T: Debug
[src]

impl<T> Default for XYZ<T> where
    T: Default
[src]

impl From<BVec3> for XYZ<bool>[src]

impl From<DVec3> for XYZ<f64>[src]

impl From<IVec3> for XYZ<i32>[src]

impl From<UVec3> for XYZ<u32>[src]

impl From<Vec3> for XYZ<f32>[src]

impl<T> From<XYZ<T>> for XY<T>[src]

impl From<XYZ<f32>> for Vec3[src]

impl From<XYZ<f64>> for DVec3[src]

impl From<XYZ<i32>> for IVec3[src]

impl From<XYZ<u32>> for UVec3[src]

impl<T> From<XYZW<T>> for XYZ<T>[src]

impl From<__m128> for XYZ<f32>[src]

impl<T> PartialEq<XYZ<T>> for XYZ<T> where
    T: PartialEq<T>, 
[src]

impl<T> PartialOrd<XYZ<T>> for XYZ<T> where
    T: PartialOrd<T>, 
[src]

impl<T> StructuralPartialEq for XYZ<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for XYZ<T> where
    T: RefUnwindSafe

impl<T> Send for XYZ<T> where
    T: Send

impl<T> Sync for XYZ<T> where
    T: Sync

impl<T> Unpin for XYZ<T> where
    T: Unpin

impl<T> UnwindSafe for XYZ<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> TypeData for T where
    T: 'static + Send + Sync + Clone
[src]