Enum tinychain::scalar::Int[]

pub enum Int {
    I16(i16),
    I32(i32),
    I64(i64),
}

A signed integer.

Variants

I16(i16)
I32(i32)
I64(i64)

Trait Implementations

impl Add<Int> for Int

type Output = Int

The resulting type after applying the + operator.

impl AddAssign<Int> for Int

impl CastFrom<Complex> for Int

impl CastFrom<Float> for Int

impl CastFrom<Int> for Boolean

impl CastFrom<Int> for UInt

impl CastFrom<Number> for Int

impl Clone for Int

impl Copy for Int

impl Debug for Int

impl Default for Int

impl Display for Int

impl Div<Int> for Int

type Output = Int

The resulting type after applying the / operator.

impl DivAssign<Int> for Int

impl Eq for Int

impl From<Boolean> for Int

impl From<Int> for Number

impl From<Int> for Float

impl From<Int> for Complex

impl From<UInt> for Int

impl From<i16> for Int

impl From<i32> for Int

impl From<i64> for Int

impl<'en> IntoStream<'en> for Int

impl Mul<Int> for Int

type Output = Int

The resulting type after applying the * operator.

impl MulAssign<Int> for Int

impl NumberInstance for Int

type Abs = Int

type Exp = UInt

type Class = IntType

impl Ord for Int

impl PartialEq<Int> for Int

impl PartialOrd<Int> for Int

impl Product<Int> for Int

impl Serialize for Int

impl Sub<Int> for Int

type Output = Int

The resulting type after applying the - operator.

impl SubAssign<Int> for Int

impl Sum<Int> for Int

impl<'en> ToStream<'en> for Int

Auto Trait Implementations

impl RefUnwindSafe for Int

impl Send for Int

impl Sync for Int

impl Unpin for Int

impl UnwindSafe for Int

Blanket Implementations

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

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

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

impl<F, T> CastFrom<F> for T where
    T: From<F>, 
[src]

impl<T, F> CastInto<F> for T where
    F: CastFrom<T>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<F> Match for F[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<F, T> TryCastFrom<F> for T where
    T: CastFrom<F>, 
[src]

impl<F, T> TryCastInto<T> for F where
    T: TryCastFrom<F>, 
[src]

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,