[][src]Struct typenum::array::TArr

pub struct TArr<V, A> { /* fields omitted */ }

TArr is a type that acts as an array of types. It is defined similarly to UInt, only its values can be more than bits, and it is designed to act as an array. So you can only add two if they have the same number of elements, for example.

This array is only really designed to contain Integer types. If you use it with others, you may find it lacking functionality.

Trait Implementations

impl<V, A> TypeArray for TArr<V, A>
[src]

impl<V, A> Len for TArr<V, A> where
    A: Len,
    Length<A>: Add<B1>,
    Sum<Length<A>, B1>: Unsigned
[src]

Size of a TypeArray

The length as a type-level unsigned integer.

impl<V, A, Rhs> PartialDiv<Rhs> for TArr<V, A> where
    V: PartialDiv<Rhs>,
    A: PartialDiv<Rhs>,
    Rhs: Copy
[src]

The type of the result of the division

impl<V: Debug, A: Debug> Debug for TArr<V, A>
[src]

impl<V: PartialEq, A: PartialEq> PartialEq<TArr<V, A>> for TArr<V, A>
[src]

impl<V: Eq, A: Eq> Eq for TArr<V, A>
[src]

impl<V: Ord, A: Ord> Ord for TArr<V, A>
[src]

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<V: PartialOrd, A: PartialOrd> PartialOrd<TArr<V, A>> for TArr<V, A>
[src]

impl<Al, Vl, Ar, Vr> Add<TArr<Vr, Ar>> for TArr<Vl, Al> where
    Al: Add<Ar>,
    Vl: Add<Vr>, 
[src]

The resulting type after applying the + operator.

impl<Vl, Al, Vr, Ar> Sub<TArr<Vr, Ar>> for TArr<Vl, Al> where
    Vl: Sub<Vr>,
    Al: Sub<Ar>, 
[src]

The resulting type after applying the - operator.

impl<V, A, Rhs> Mul<Rhs> for TArr<V, A> where
    V: Mul<Rhs>,
    A: Mul<Rhs>,
    Rhs: Copy
[src]

The resulting type after applying the * operator.

impl<V, A> Mul<TArr<V, A>> for Z0 where
    Z0: Mul<A>, 
[src]

The resulting type after applying the * operator.

impl<V, A, U> Mul<TArr<V, A>> for PInt<U> where
    U: Unsigned + NonZero,
    PInt<U>: Mul<A> + Mul<V>, 
[src]

The resulting type after applying the * operator.

impl<V, A, U> Mul<TArr<V, A>> for NInt<U> where
    U: Unsigned + NonZero,
    NInt<U>: Mul<A> + Mul<V>, 
[src]

The resulting type after applying the * operator.

impl<V, A, Rhs> Div<Rhs> for TArr<V, A> where
    V: Div<Rhs>,
    A: Div<Rhs>,
    Rhs: Copy
[src]

The resulting type after applying the / operator.

impl<V, A, Rhs> Rem<Rhs> for TArr<V, A> where
    V: Rem<Rhs>,
    A: Rem<Rhs>,
    Rhs: Copy
[src]

The resulting type after applying the % operator.

impl<V, A> Neg for TArr<V, A> where
    V: Neg,
    A: Neg
[src]

The resulting type after applying the - operator.

impl<V: Hash, A: Hash> Hash for TArr<V, A>
[src]

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

impl<V: Copy, A: Copy> Copy for TArr<V, A>
[src]

impl<V: Clone, A: Clone> Clone for TArr<V, A>
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<V, A> Send for TArr<V, A> where
    A: Send,
    V: Send

impl<V, A> Sync for TArr<V, A> where
    A: Sync,
    V: Sync

Blanket Implementations

impl<T> Same for T
[src]

Should always be Self

impl<M, N> PartialDiv for M where
    M: Integer + Div<N> + Rem<N, Output = Z0>, 
[src]

The type of the result of the division

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

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

The type returned in the event of a conversion error.

impl<T> From for T
[src]

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

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

The type returned in the event of a conversion error.

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

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

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

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