#[repr(C)]pub struct ColumnMatrix3x2<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 ColumnMatrix3x2<T>
impl<T> AsMut<[T; 6]> for ColumnMatrix3x2<T>
Source§impl<T> AsRef<[T; 6]> for ColumnMatrix3x2<T>
impl<T> AsRef<[T; 6]> for ColumnMatrix3x2<T>
Source§impl<T: Clone> Clone for ColumnMatrix3x2<T>
impl<T: Clone> Clone for ColumnMatrix3x2<T>
Source§fn clone(&self) -> ColumnMatrix3x2<T>
fn clone(&self) -> ColumnMatrix3x2<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 ColumnMatrix3x2<T>
impl<T: Debug> Debug for ColumnMatrix3x2<T>
Source§impl<T> From<ColumnMatrix3x2<T>> for [T; 6]
impl<T> From<ColumnMatrix3x2<T>> for [T; 6]
Source§fn from(name: ColumnMatrix3x2<T>) -> [T; 6]
fn from(name: ColumnMatrix3x2<T>) -> [T; 6]
Converts to this type from the input type.
Source§impl<T> From<ColumnMatrix3x2<T>> for RowMatrix3x2<T>
impl<T> From<ColumnMatrix3x2<T>> for RowMatrix3x2<T>
Source§fn from(m: ColumnMatrix3x2<T>) -> Self
fn from(m: ColumnMatrix3x2<T>) -> Self
Converts to this type from the input type.
Source§impl<T> From<RowMatrix3x2<T>> for ColumnMatrix3x2<T>
impl<T> From<RowMatrix3x2<T>> for ColumnMatrix3x2<T>
Source§fn from(m: RowMatrix3x2<T>) -> Self
fn from(m: RowMatrix3x2<T>) -> Self
Converts to this type from the input type.
Source§impl<T: Hash> Hash for ColumnMatrix3x2<T>
impl<T: Hash> Hash for ColumnMatrix3x2<T>
Source§impl<T> IntoMint for ColumnMatrix3x2<T>
impl<T> IntoMint for ColumnMatrix3x2<T>
Source§type MintType = ColumnMatrix3x2<T>
type MintType = ColumnMatrix3x2<T>
The mint type that this type is associated with.
Source§impl<T: Ord> Ord for ColumnMatrix3x2<T>
impl<T: Ord> Ord for ColumnMatrix3x2<T>
Source§fn cmp(&self, other: &ColumnMatrix3x2<T>) -> Ordering
fn cmp(&self, other: &ColumnMatrix3x2<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 ColumnMatrix3x2<T>
impl<T: PartialEq> PartialEq for ColumnMatrix3x2<T>
Source§impl<T: PartialOrd> PartialOrd for ColumnMatrix3x2<T>
impl<T: PartialOrd> PartialOrd for ColumnMatrix3x2<T>
impl<T: Copy> Copy for ColumnMatrix3x2<T>
impl<T: Eq> Eq for ColumnMatrix3x2<T>
impl<T> StructuralPartialEq for ColumnMatrix3x2<T>
Auto Trait Implementations§
impl<T> Freeze for ColumnMatrix3x2<T>where
T: Freeze,
impl<T> RefUnwindSafe for ColumnMatrix3x2<T>where
T: RefUnwindSafe,
impl<T> Send for ColumnMatrix3x2<T>where
T: Send,
impl<T> Sync for ColumnMatrix3x2<T>where
T: Sync,
impl<T> Unpin for ColumnMatrix3x2<T>where
T: Unpin,
impl<T> UnwindSafe for ColumnMatrix3x2<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