[][src]Struct fui_core::Matrix2x3

pub struct Matrix2x3<T> where
    T: Copy
{ pub row: [[T; 3]; 2], }

Fields

row: [[T; 3]; 2]

Implementations

impl<T> Matrix2x3<T> where
    T: Copy
[src]

pub fn new(r0c0: T, r0c1: T, r0c2: T, r1c0: T, r1c1: T, r1c2: T) -> Matrix2x3<T>[src]

Trait Implementations

impl<T: Clone> Clone for Matrix2x3<T> where
    T: Copy
[src]

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

impl<T: Debug> Debug for Matrix2x3<T> where
    T: Copy
[src]

impl<T> Mul<[T; 2]> for Matrix2x3<T> where
    T: Mul<Output = T> + Add<Output = T> + Copy
[src]

type Output = Vector2<T>

The resulting type after applying the * operator.

impl<T> Mul<Matrix2x3<T>> for Matrix2x3<T> where
    T: Mul<Output = T> + Add<Output = T> + Copy
[src]

type Output = Matrix2x3<T>

The resulting type after applying the * operator.

Auto Trait Implementations

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

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

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

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

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

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> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[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.

impl<T> UnsafeAny for T where
    T: Any