[][src]Struct tensor_macros::defaults::RowV4

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

Trait Implementations

impl<T> Tensor for RowV4<T> where
    T: TensorTrait
[src]

type Value = T

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

type Output = RowV4<V>

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

impl<T> TensorTranspose<RowV4<T>, T> for V4<T> where
    T: TensorTrait
[src]

impl<T> TensorTranspose<V4<T>, T> for RowV4<T> where
    T: TensorTrait
[src]

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

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

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

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

This method tests for !=.

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

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

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

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

type Output = RowV4<V>

The resulting type after applying the + operator.

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

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

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

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

type Output = T

The returned type after indexing.

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

type Output = T

The returned type after indexing.

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

impl<T> Sync for RowV4<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.