[][src]Struct tensor_macros::defaults::M44

pub struct M44<T: TensorTrait>(_);

Trait Implementations

impl<T: TensorTrait> Tensor for M44<T>[src]

type Value = T

impl<T, U, V> CwiseMul<M44<U>> for M44<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M44<V>

impl<T, U> CwiseMulAssign<M44<U>> for M44<T> where
    T: TensorTrait + MulAssign<U>,
    U: TensorTrait
[src]

impl<T> TensorTranspose<M44T<T>, T> for M44<T> where
    T: TensorTrait
[src]

impl<T> TensorTranspose<M44<T>, T> for M44T<T> where
    T: TensorTrait
[src]

impl<T: TensorTrait> Matrix for M44<T>[src]

impl<T: TensorTrait> From<T> for M44<T>[src]

impl<T: TensorTrait> Default for M44<T>[src]

impl<T: TensorTrait> PartialEq<M44<T>> for M44<T>[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<T: TensorTrait> Copy for M44<T>[src]

impl<T: TensorTrait> Clone for M44<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: TensorTrait> IndexMut<usize> for M44<T>[src]

impl<T: TensorTrait> IndexMut<(usize, usize)> for M44<T>[src]

impl<T, U, V> Add<M44<U>> for M44<T> where
    Self: Tensor<Value = T>,
    T: TensorTrait + Add<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M44<V>

The resulting type after applying the + operator.

impl<T: TensorTrait> Debug for M44<T>[src]

impl<T, U, V> Mul<V4<U>> for M44<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = V4<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<M42<U>> for M44<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M32<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<M43<U>> for M44<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M33<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<M44<U>> for M24<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M24<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<M44<U>> for M34<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M34<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<M44<U>> for M44<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M34<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<M44T<U>> for M44<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M44<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<M44<U>> for M44T<T> where
    T: TensorTrait + Mul<U, Output = V>,
    U: TensorTrait,
    V: TensorTrait
[src]

type Output = M44<V>

The resulting type after applying the * operator.

impl<T, U> AddAssign<M44<U>> for M44<T> where
    T: TensorTrait + AddAssign<U>,
    U: TensorTrait
[src]

impl<T, U> MulAssign<U> for M44<T> where
    T: TensorTrait + MulAssign<U>,
    U: Clone
[src]

impl<T: TensorTrait> Index<usize> for M44<T>[src]

type Output = T

The returned type after indexing.

impl<T: TensorTrait> Index<(usize, usize)> for M44<T>[src]

type Output = T

The returned type after indexing.

impl<T: TensorTrait, '_> TryFrom<&'_ [T]> for M44<T>[src]

type Error = TensorError

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T: TensorTrait> TryFrom<Vec<T>> for M44<T>[src]

type Error = TensorError

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<T> Send for M44<T> where
    T: Send

impl<T> Sync for M44<T> where
    T: Sync

Blanket Implementations

impl<T> TensorTrait for T where
    T: PartialEq<T> + Debug + Default + Add<T> + AddAssign<T> + Mul<T> + MulAssign<T> + Copy + Clone
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.