Struct lnkit::prelude::base::coordinates::M4x3[][src]

#[repr(C)]
pub struct M4x3<T> where
    T: Scalar
{ pub m11: T, pub m21: T, pub m31: T, pub m41: T, pub m12: T, pub m22: T, pub m32: T, pub m42: T, pub m13: T, pub m23: T, pub m33: T, pub m43: T, }

Data structure used to provide access to matrix and vector coordinates with the dot notation, e.g., v.x is the same as v[0] for a vector.

Fields

m11: Tm21: Tm31: Tm41: Tm12: Tm22: Tm32: Tm42: Tm13: Tm23: Tm33: Tm43: T

Trait Implementations

impl<T> Clone for M4x3<T> where
    T: Clone + Scalar
[src]

impl<T> Copy for M4x3<T> where
    T: Copy + Scalar
[src]

impl<T> Debug for M4x3<T> where
    T: Debug + Scalar
[src]

impl<'de, T> Deserialize<'de> for M4x3<T> where
    T: Scalar + Deserialize<'de>, 
[src]

impl<T> Eq for M4x3<T> where
    T: Eq + Scalar
[src]

impl<T> Hash for M4x3<T> where
    T: Hash + Scalar
[src]

impl<T> PartialEq<M4x3<T>> for M4x3<T> where
    T: PartialEq<T> + Scalar
[src]

impl<T> Serialize for M4x3<T> where
    T: Scalar + Serialize
[src]

impl<T> StructuralEq for M4x3<T> where
    T: Scalar
[src]

impl<T> StructuralPartialEq for M4x3<T> where
    T: Scalar
[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for M4x3<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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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<V, T> VZip<V> for T where
    V: MultiLane<T>,