[][src]Struct typenum::array::ATerm

pub struct ATerm;

The terminating type for type arrays.

Trait Implementations

impl TypeArray for ATerm[src]

impl Len for ATerm[src]

Length of ATerm by itself is 0

type Output = U0

The length as a type-level unsigned integer.

impl<Rhs> PartialDiv<Rhs> for ATerm[src]

type Output = ATerm

The type of the result of the division

impl PartialEq<ATerm> for ATerm[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for ATerm[src]

impl Ord for ATerm[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

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

Restrict a value to a certain interval. Read more

impl PartialOrd<ATerm> for ATerm[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Hash for ATerm[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

impl Add<ATerm> for ATerm[src]

type Output = ATerm

The resulting type after applying the + operator.

impl Sub<ATerm> for ATerm[src]

type Output = ATerm

The resulting type after applying the - operator.

impl<Rhs> Mul<Rhs> for ATerm[src]

type Output = ATerm

The resulting type after applying the * operator.

impl Mul<ATerm> for Z0[src]

type Output = ATerm

The resulting type after applying the * operator.

impl<U> Mul<ATerm> for PInt<U> where
    U: Unsigned + NonZero
[src]

type Output = ATerm

The resulting type after applying the * operator.

impl<U> Mul<ATerm> for NInt<U> where
    U: Unsigned + NonZero
[src]

type Output = ATerm

The resulting type after applying the * operator.

impl<Rhs> Div<Rhs> for ATerm[src]

type Output = ATerm

The resulting type after applying the / operator.

impl<Rhs> Rem<Rhs> for ATerm[src]

type Output = ATerm

The resulting type after applying the % operator.

impl Neg for ATerm[src]

type Output = ATerm

The resulting type after applying the - operator.

impl Debug for ATerm[src]

impl Copy for ATerm[src]

impl Clone for ATerm[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for ATerm

impl Send for ATerm

impl Sync for ATerm

Blanket Implementations

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

type Output = T

Should always be Self

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

type Output = <M as Div<N>>::Output

The type of the result of the division

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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]