Struct mint::RowMatrix4
source · #[repr(C)]pub struct RowMatrix4<T> {
pub x: Vector4<T>,
pub y: Vector4<T>,
pub z: Vector4<T>,
pub w: Vector4<T>,
}
Fields§
§x: Vector4<T>
§y: Vector4<T>
§z: Vector4<T>
§w: Vector4<T>
Trait Implementations§
source§impl<T> AsMut<[T; 16]> for RowMatrix4<T>
impl<T> AsMut<[T; 16]> for RowMatrix4<T>
source§impl<T> AsRef<[T; 16]> for RowMatrix4<T>
impl<T> AsRef<[T; 16]> for RowMatrix4<T>
source§impl<T: Clone> Clone for RowMatrix4<T>
impl<T: Clone> Clone for RowMatrix4<T>
source§fn clone(&self) -> RowMatrix4<T>
fn clone(&self) -> RowMatrix4<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Debug> Debug for RowMatrix4<T>
impl<T: Debug> Debug for RowMatrix4<T>
source§impl<T> From<ColumnMatrix4<T>> for RowMatrix4<T>
impl<T> From<ColumnMatrix4<T>> for RowMatrix4<T>
source§fn from(m: ColumnMatrix4<T>) -> Self
fn from(m: ColumnMatrix4<T>) -> Self
Converts to this type from the input type.
source§impl<T> From<RowMatrix4<T>> for [T; 16]
impl<T> From<RowMatrix4<T>> for [T; 16]
source§fn from(name: RowMatrix4<T>) -> [T; 16]
fn from(name: RowMatrix4<T>) -> [T; 16]
Converts to this type from the input type.
source§impl<T> From<RowMatrix4<T>> for ColumnMatrix4<T>
impl<T> From<RowMatrix4<T>> for ColumnMatrix4<T>
source§fn from(m: RowMatrix4<T>) -> Self
fn from(m: RowMatrix4<T>) -> Self
Converts to this type from the input type.
source§impl<T: Hash> Hash for RowMatrix4<T>
impl<T: Hash> Hash for RowMatrix4<T>
source§impl<T> IntoMint for RowMatrix4<T>
impl<T> IntoMint for RowMatrix4<T>
§type MintType = RowMatrix4<T>
type MintType = RowMatrix4<T>
The mint type that this type is associated with.
source§impl<T: Ord> Ord for RowMatrix4<T>
impl<T: Ord> Ord for RowMatrix4<T>
source§fn cmp(&self, other: &RowMatrix4<T>) -> Ordering
fn cmp(&self, other: &RowMatrix4<T>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<T: PartialEq> PartialEq for RowMatrix4<T>
impl<T: PartialEq> PartialEq for RowMatrix4<T>
source§fn eq(&self, other: &RowMatrix4<T>) -> bool
fn eq(&self, other: &RowMatrix4<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T: PartialOrd> PartialOrd for RowMatrix4<T>
impl<T: PartialOrd> PartialOrd for RowMatrix4<T>
source§fn partial_cmp(&self, other: &RowMatrix4<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &RowMatrix4<T>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<T: Copy> Copy for RowMatrix4<T>
impl<T: Eq> Eq for RowMatrix4<T>
impl<T> StructuralEq for RowMatrix4<T>
impl<T> StructuralPartialEq for RowMatrix4<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for RowMatrix4<T>where
T: RefUnwindSafe,
impl<T> Send for RowMatrix4<T>where
T: Send,
impl<T> Sync for RowMatrix4<T>where
T: Sync,
impl<T> Unpin for RowMatrix4<T>where
T: Unpin,
impl<T> UnwindSafe for RowMatrix4<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more