[][src]Struct mint::ColumnMatrix2

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

Fields

x: Vector2<T>y: Vector2<T>

Trait Implementations

impl<T> Into<[[T; 2]; 2]> for ColumnMatrix2<T>[src]

impl<T> Into<[T; 4]> for ColumnMatrix2<T>[src]

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

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

impl<T> AsRef<[[T; 2]; 2]> for ColumnMatrix2<T>[src]

impl<T> AsRef<[T; 4]> for ColumnMatrix2<T>[src]

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

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

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

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

impl<T> From<[[T; 2]; 2]> for ColumnMatrix2<T>[src]

impl<T: Clone> From<[T; 4]> for ColumnMatrix2<T>[src]

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> RefUnwindSafe for ColumnMatrix2<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, U> Into<U> for T where
    U: From<T>, 
[src]

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

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

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