Struct bevy::math::XY[][src]

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

Fields

x: Ty: T

Trait Implementations

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

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

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

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

impl From<BVec2> for XY<bool>[src]

impl From<DVec2> for XY<f64>[src]

impl From<IVec2> for XY<i32>[src]

impl From<UVec2> for XY<u32>[src]

impl From<Vec2> for XY<f32>[src]

impl From<XY<f32>> for Vec2[src]

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

impl From<XY<f64>> for DVec2[src]

impl From<XY<i32>> for IVec2[src]

impl From<XY<u32>> for UVec2[src]

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Any + Clone

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

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

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

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

impl<T> FromWorld for T where
    T: Default

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

impl<T> Upcast<T> for T

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