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