Struct macroquad::math::XYZW[][src]

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

Fields

x: Ty: Tz: Tw: T

Trait Implementations

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

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

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

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

impl From<BVec4> for XYZW<bool>[src]

impl From<DQuat> for XYZW<f64>[src]

impl From<DVec4> for XYZW<f64>[src]

impl From<IVec4> for XYZW<i32>[src]

impl From<Quat> for XYZW<f32>[src]

impl From<UVec4> for XYZW<u32>[src]

impl From<Vec4> for XYZW<f32>[src]

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

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

impl From<XYZW<f32>> for Vec4[src]

impl From<XYZW<f32>> for Quat[src]

impl From<XYZW<f64>> for DQuat[src]

impl From<XYZW<f64>> for DVec4[src]

impl From<XYZW<i32>> for IVec4[src]

impl From<XYZW<u32>> for UVec4[src]

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for XYZW<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> From<T> 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.