Struct directx_math::XMVector[][src]

#[repr(transparent)]
pub struct XMVector(pub XMVECTOR);

Unit struct for XMVECTOR operator overloads.

Implementations

impl XMVector[src]

pub fn set(x: f32, y: f32, z: f32, w: f32) -> XMVector[src]

Trait Implementations

impl Add<XMVector> for XMVector[src]

type Output = XMVector

The resulting type after applying the + operator.

impl AddAssign<XMVector> for XMVector[src]

impl Clone for XMVector[src]

impl Copy for XMVector[src]

impl Debug for XMVector[src]

impl Deref for XMVector[src]

type Target = XMVECTOR

The resulting type after dereferencing.

impl DerefMut for XMVector[src]

impl Div<XMVector> for XMVector[src]

type Output = XMVector

The resulting type after applying the / operator.

impl Div<f32> for XMVector[src]

type Output = XMVector

The resulting type after applying the / operator.

impl DivAssign<XMVector> for XMVector[src]

impl DivAssign<f32> for XMVector[src]

impl From<&'_ [f32; 4]> for XMVector[src]

impl Mul<XMVector> for XMVector[src]

type Output = XMVector

The resulting type after applying the * operator.

impl Mul<f32> for XMVector[src]

type Output = XMVector

The resulting type after applying the * operator.

impl MulAssign<XMVector> for XMVector[src]

impl MulAssign<f32> for XMVector[src]

impl Neg for XMVector[src]

type Output = XMVector

The resulting type after applying the - operator.

impl PartialEq<XMVector> for XMVector[src]

impl Sub<XMVector> for XMVector[src]

type Output = XMVector

The resulting type after applying the - operator.

impl SubAssign<XMVector> for XMVector[src]

Auto Trait Implementations

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.