[][src]Struct directx_math::XMINT3

#[repr(C)]pub struct XMINT3 {
    pub x: i32,
    pub y: i32,
    pub z: i32,
}

Fields

x: i32y: i32z: i32

Implementations

impl XMINT3[src]

pub fn set(x: i32, y: i32, z: i32) -> XMINT3[src]

Trait Implementations

impl AsMut<[i32; 3]> for XMINT3[src]

impl AsRef<[i32; 3]> for XMINT3[src]

impl Clone for XMINT3[src]

impl Copy for XMINT3[src]

impl Debug for XMINT3[src]

impl Default for XMINT3[src]

impl<'a> From<&'a [i32; 3]> for &'a XMINT3[src]

impl From<[i32; 3]> for XMINT3[src]

impl<'a> Into<&'a [i32; 3]> for &'a XMINT3[src]

impl Into<[i32; 3]> for XMINT3[src]

Auto Trait Implementations

impl RefUnwindSafe for XMINT3

impl Send for XMINT3

impl Sync for XMINT3

impl Unpin for XMINT3

impl UnwindSafe for XMINT3

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.