[][src]Struct tensor_macros::defaults::V2

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

Trait Implementations

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

type Value = T

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

type Output = V2<V>

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

impl<T> TensorTranspose<RowV2<T>, T> for V2<T> where
    T: TensorTrait
[src]

impl<T> TensorTranspose<V2<T>, T> for RowV2<T> where
    T: TensorTrait
[src]

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

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

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

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

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

This method tests for !=.

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

impl<T: TensorTrait> Clone for V2<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 V2<T>[src]

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

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

type Output = V2<V>

The resulting type after applying the + operator.

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

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

type Output = V2<V>

The resulting type after applying the * operator.

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

type Output = V3<V>

The resulting type after applying the * operator.

impl<T, U, V> Mul<V2<U>> for M42<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> AddAssign<V2<U>> for V2<T> where
    T: TensorTrait + AddAssign<U>,
    U: TensorTrait
[src]

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

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

type Output = T

The returned type after indexing.

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

type Output = T

The returned type after indexing.

impl<T: TensorTrait, '_> TryFrom<&'_ [T]> for V2<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 V2<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 V2<T> where
    T: Send

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

Blanket Implementations

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.