[][src]Struct tense::Tense

pub struct Tense<T> {
    pub val: Vec<T>,
}

Fields

val: Vec<T>

Trait Implementations

impl<T> TensorCalculus<T> for Tense<T> where
    T: Add<Output = T> + Sub + Mul + Div + Zero + Clone
[src]

impl<T: Clone> Clone for Tense<T>[src]

impl<T: PartialEq> PartialEq<Tense<T>> for Tense<T>[src]

impl<T> Deref for Tense<T>[src]

type Target = [T]

The resulting type after dereferencing.

impl<T: Debug> Debug for Tense<T>[src]

impl<I, T, U> Div<I> for Tense<T> where
    T: Div<U, Output = T> + Clone,
    I: Deref<Target = [U]>,
    U: Clone
[src]

type Output = Tense<T>

The resulting type after applying the / operator.

impl<I, T, U> Rem<I> for Tense<T> where
    T: Rem<U, Output = T> + Clone,
    I: Deref<Target = [U]>,
    U: Clone
[src]

type Output = Tense<T>

The resulting type after applying the % operator.

impl<I, T, U> Sub<I> for Tense<T> where
    T: Sub<U, Output = T> + Clone,
    I: Deref<Target = [U]>,
    U: Clone
[src]

type Output = Tense<T>

The resulting type after applying the - operator.

impl<I, T, U> Add<I> for Tense<T> where
    T: Add<U, Output = T> + Clone,
    I: Deref<Target = [U]>,
    U: Clone
[src]

type Output = Tense<T>

The resulting type after applying the + operator.

impl<I, T, U> Mul<I> for Tense<T> where
    T: Mul<U, Output = T> + Clone,
    I: Deref<Target = [U]>,
    U: Clone
[src]

type Output = Tense<T>

The resulting type after applying the * operator.

impl<T> Neg for Tense<T> where
    T: Neg<Output = T> + Clone
[src]

type Output = Tense<T>

The resulting type after applying the - operator.

impl<I, T, U> AddAssign<I> for Tense<T> where
    T: AddAssign<U>,
    I: Deref<Target = [U]>,
    U: Clone
[src]

impl<I, T, U> SubAssign<I> for Tense<T> where
    T: SubAssign<U>,
    I: Deref<Target = [U]>,
    U: Clone
[src]

impl<I, T, U> MulAssign<I> for Tense<T> where
    T: MulAssign<U>,
    I: Deref<Target = [U]>,
    U: Clone
[src]

impl<I, T, U> DivAssign<I> for Tense<T> where
    T: DivAssign<U>,
    I: Deref<Target = [U]>,
    U: Clone
[src]

impl<I, T, U> RemAssign<I> for Tense<T> where
    T: RemAssign<U>,
    I: Deref<Target = [U]>,
    U: Clone
[src]

impl<T> Index<usize> for Tense<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<usize> for Tense<T>[src]

impl<T> StructuralPartialEq for Tense<T>[src]

Auto Trait Implementations

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

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

impl<T> Unpin for Tense<T> where
    T: Unpin

impl<T> UnwindSafe for Tense<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Tense<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]