[][src]Struct mint::ColumnMatrix3x4

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

Fields

x: Vector3<T>y: Vector3<T>z: Vector3<T>w: Vector3<T>

Trait Implementations

impl<T: Copy> Copy for ColumnMatrix3x4<T>[src]

impl<T> AsRef<[[T; 3]; 4]> for ColumnMatrix3x4<T>[src]

impl<T> AsRef<[T; 12]> for ColumnMatrix3x4<T>[src]

impl<T: Eq> Eq for ColumnMatrix3x4<T>[src]

impl<T: Clone> Clone for ColumnMatrix3x4<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: PartialOrd> PartialOrd<ColumnMatrix3x4<T>> for ColumnMatrix3x4<T>[src]

impl<T: PartialEq> PartialEq<ColumnMatrix3x4<T>> for ColumnMatrix3x4<T>[src]

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

impl<T: Copy> From<[[T; 3]; 4]> for ColumnMatrix3x4<T>[src]

impl<T: Clone> From<[T; 12]> for ColumnMatrix3x4<T>[src]

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

impl<T> Into<[[T; 3]; 4]> for ColumnMatrix3x4<T>[src]

impl<T: Copy> Into<[T; 12]> for ColumnMatrix3x4<T>[src]

impl<T: Ord> Ord for ColumnMatrix3x4<T>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<T: Hash> Hash for ColumnMatrix3x4<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Debug> Debug for ColumnMatrix3x4<T>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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