Struct mint::RowMatrix2x3
source · #[repr(C)]pub struct RowMatrix2x3<T> {
pub x: Vector3<T>,
pub y: Vector3<T>,
}
Fields§
§x: Vector3<T>
§y: Vector3<T>
Trait Implementations§
source§impl<T> AsMut<[T; 6]> for RowMatrix2x3<T>
impl<T> AsMut<[T; 6]> for RowMatrix2x3<T>
source§impl<T> AsRef<[T; 6]> for RowMatrix2x3<T>
impl<T> AsRef<[T; 6]> for RowMatrix2x3<T>
source§impl<T: Clone> Clone for RowMatrix2x3<T>
impl<T: Clone> Clone for RowMatrix2x3<T>
source§fn clone(&self) -> RowMatrix2x3<T>
fn clone(&self) -> RowMatrix2x3<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 RowMatrix2x3<T>
impl<T: Debug> Debug for RowMatrix2x3<T>
source§impl<T> From<ColumnMatrix2x3<T>> for RowMatrix2x3<T>
impl<T> From<ColumnMatrix2x3<T>> for RowMatrix2x3<T>
source§fn from(m: ColumnMatrix2x3<T>) -> Self
fn from(m: ColumnMatrix2x3<T>) -> Self
Converts to this type from the input type.
source§impl<T> From<RowMatrix2x3<T>> for [T; 6]
impl<T> From<RowMatrix2x3<T>> for [T; 6]
source§fn from(name: RowMatrix2x3<T>) -> [T; 6]
fn from(name: RowMatrix2x3<T>) -> [T; 6]
Converts to this type from the input type.
source§impl<T> From<RowMatrix2x3<T>> for ColumnMatrix2x3<T>
impl<T> From<RowMatrix2x3<T>> for ColumnMatrix2x3<T>
source§fn from(m: RowMatrix2x3<T>) -> Self
fn from(m: RowMatrix2x3<T>) -> Self
Converts to this type from the input type.
source§impl<T: Hash> Hash for RowMatrix2x3<T>
impl<T: Hash> Hash for RowMatrix2x3<T>
source§impl<T> IntoMint for RowMatrix2x3<T>
impl<T> IntoMint for RowMatrix2x3<T>
§type MintType = RowMatrix2x3<T>
type MintType = RowMatrix2x3<T>
The mint type that this type is associated with.
source§impl<T: Ord> Ord for RowMatrix2x3<T>
impl<T: Ord> Ord for RowMatrix2x3<T>
source§fn cmp(&self, other: &RowMatrix2x3<T>) -> Ordering
fn cmp(&self, other: &RowMatrix2x3<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 RowMatrix2x3<T>
impl<T: PartialEq> PartialEq for RowMatrix2x3<T>
source§fn eq(&self, other: &RowMatrix2x3<T>) -> bool
fn eq(&self, other: &RowMatrix2x3<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T: PartialOrd> PartialOrd for RowMatrix2x3<T>
impl<T: PartialOrd> PartialOrd for RowMatrix2x3<T>
source§fn partial_cmp(&self, other: &RowMatrix2x3<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &RowMatrix2x3<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 RowMatrix2x3<T>
impl<T: Eq> Eq for RowMatrix2x3<T>
impl<T> StructuralEq for RowMatrix2x3<T>
impl<T> StructuralPartialEq for RowMatrix2x3<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for RowMatrix2x3<T>where
T: RefUnwindSafe,
impl<T> Send for RowMatrix2x3<T>where
T: Send,
impl<T> Sync for RowMatrix2x3<T>where
T: Sync,
impl<T> Unpin for RowMatrix2x3<T>where
T: Unpin,
impl<T> UnwindSafe for RowMatrix2x3<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