#[repr(C)]
pub struct ColumnMatrix3x2<T> { pub x: Vector3<T>, pub y: Vector3<T>, }

Fields§

§x: Vector3<T>§y: Vector3<T>

Trait Implementations§

§

impl<T> AsMut<[[T; 3]; 2]> for ColumnMatrix3x2<T>

§

fn as_mut(&mut self) -> &mut [[T; 3]; 2]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl<T> AsMut<[T; 6]> for ColumnMatrix3x2<T>

§

fn as_mut(&mut self) -> &mut [T; 6]

Converts this type into a mutable reference of the (usually inferred) input type.
§

impl<T> AsRef<[[T; 3]; 2]> for ColumnMatrix3x2<T>

§

fn as_ref(&self) -> &[[T; 3]; 2]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<T> AsRef<[T; 6]> for ColumnMatrix3x2<T>

§

fn as_ref(&self) -> &[T; 6]

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<T> Clone for ColumnMatrix3x2<T>where T: Clone,

§

fn clone(&self) -> ColumnMatrix3x2<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<T> Debug for ColumnMatrix3x2<T>where T: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<T> From<[[T; 3]; 2]> for ColumnMatrix3x2<T>

§

fn from(_: [[T; 3]; 2]) -> ColumnMatrix3x2<T>

Converts to this type from the input type.
§

impl<T> From<[T; 6]> for ColumnMatrix3x2<T>where T: Clone,

§

fn from(m: [T; 6]) -> ColumnMatrix3x2<T>

Converts to this type from the input type.
§

impl<T> From<ColumnMatrix3x2<T>> for [[T; 3]; 2]

§

fn from(name: ColumnMatrix3x2<T>) -> [[T; 3]; 2]

Converts to this type from the input type.
§

impl<T> From<ColumnMatrix3x2<T>> for [T; 6]

§

fn from(name: ColumnMatrix3x2<T>) -> [T; 6]

Converts to this type from the input type.
§

impl<T> From<ColumnMatrix3x2<T>> for RowMatrix3x2<T>

§

fn from(m: ColumnMatrix3x2<T>) -> RowMatrix3x2<T>

Converts to this type from the input type.
§

impl<T> From<RowMatrix3x2<T>> for ColumnMatrix3x2<T>

§

fn from(m: RowMatrix3x2<T>) -> ColumnMatrix3x2<T>

Converts to this type from the input type.
§

impl<T> Hash for ColumnMatrix3x2<T>where T: Hash,

§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<T> IntoMint for ColumnMatrix3x2<T>

§

type MintType = ColumnMatrix3x2<T>

The mint type that this type is associated with.
§

impl<T> Ord for ColumnMatrix3x2<T>where T: Ord,

§

fn cmp(&self, other: &ColumnMatrix3x2<T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
§

impl<T> PartialEq<ColumnMatrix3x2<T>> for ColumnMatrix3x2<T>where T: PartialEq<T>,

§

fn eq(&self, other: &ColumnMatrix3x2<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<T> PartialOrd<ColumnMatrix3x2<T>> for ColumnMatrix3x2<T>where T: PartialOrd<T>,

§

fn partial_cmp(&self, other: &ColumnMatrix3x2<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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 more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl<T> Copy for ColumnMatrix3x2<T>where T: Copy,

§

impl<T> Eq for ColumnMatrix3x2<T>where T: Eq,

§

impl<T> StructuralEq for ColumnMatrix3x2<T>

§

impl<T> StructuralPartialEq for ColumnMatrix3x2<T>

Auto Trait Implementations§

§

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Comparable<K> for Qwhere Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> Component for Twhere T: Send + Sync + 'static,

source§

impl<T> RuleType for Twhere T: Copy + Debug + Eq + Hash + Ord,