[][src]Struct oxygengine_physics_2d::prelude::nalgebra::base::coordinates::M2x5

#[repr(C)]pub struct M2x5<N> where
    N: Scalar
{ pub m11: N, pub m21: N, pub m12: N, pub m22: N, pub m13: N, pub m23: N, pub m14: N, pub m24: N, pub m15: N, pub m25: N, }

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: Nm21: Nm12: Nm22: Nm13: Nm23: Nm14: Nm24: Nm15: Nm25: N

Trait Implementations

impl<N> Clone for M2x5<N> where
    N: Scalar + Clone
[src]

impl<N> Copy for M2x5<N> where
    N: Scalar + Copy
[src]

impl<N> Debug for M2x5<N> where
    N: Scalar + Debug
[src]

impl<'de, N> Deserialize<'de> for M2x5<N> where
    N: Scalar + Deserialize<'de>, 
[src]

impl<N> Eq for M2x5<N> where
    N: Scalar + Eq
[src]

impl<N> Hash for M2x5<N> where
    N: Scalar + Hash
[src]

impl<N> PartialEq<M2x5<N>> for M2x5<N> where
    N: Scalar + PartialEq<N>, 
[src]

impl<N> Serialize for M2x5<N> where
    N: Scalar + Serialize
[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for M2x5<N> where
    N: RefUnwindSafe

impl<N> Send for M2x5<N> where
    N: Send

impl<N> Sync for M2x5<N> where
    N: Sync

impl<N> Unpin for M2x5<N> where
    N: Unpin

impl<N> UnwindSafe for M2x5<N> where
    N: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any

impl<T> BodyHandle for T where
    T: 'static + PartialEq<T> + Eq + Send + Copy + Sync + Hash
[src]

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

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

impl<T> ColliderHandle for T where
    T: Debug + CollisionObjectHandle
[src]

impl<T> CollisionObjectHandle for T where
    T: 'static + PartialEq<T> + Eq + Send + Copy + Sync + Hash
[src]

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: Send + Sync + Any

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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

impl<T> Slottable for T where
    T: Copy
[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<T> UserData for T where
    T: Clone + Send + Sync + Any
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,