Enum tc_value::Int[][src]

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[src]

type Output = Int

The resulting type after applying the + operator.

impl AddAssign<Int> for Int[src]

impl CastFrom<Complex> for Int[src]

impl CastFrom<Float> for Int[src]

impl CastFrom<Int> for Boolean[src]

impl CastFrom<Int> for UInt[src]

impl CastFrom<Number> for Int[src]

impl Clone for Int[src]

impl Copy for Int[src]

impl Debug for Int[src]

impl Default for Int[src]

impl Display for Int[src]

impl Div<Int> for Int[src]

type Output = Int

The resulting type after applying the / operator.

impl DivAssign<Int> for Int[src]

impl Eq for Int[src]

impl From<Boolean> for Int[src]

impl From<Int> for Number[src]

impl From<Int> for Float[src]

impl From<Int> for Complex[src]

impl From<UInt> for Int[src]

impl From<i16> for Int[src]

impl From<i32> for Int[src]

impl From<i64> for Int[src]

impl<'en> IntoStream<'en> for Int[src]

impl Mul<Int> for Int[src]

type Output = Int

The resulting type after applying the * operator.

impl MulAssign<Int> for Int[src]

impl NumberInstance for Int[src]

type Abs = Int

type Exp = UInt

type Class = IntType

impl Ord for Int[src]

impl PartialEq<Int> for Int[src]

impl PartialOrd<Int> for Int[src]

impl Product<Int> for Int[src]

impl Serialize for Int[src]

impl Sub<Int> for Int[src]

type Output = Int

The resulting type after applying the - operator.

impl SubAssign<Int> for Int[src]

impl Sum<Int> for Int[src]

impl<'en> ToStream<'en> for Int[src]

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<T> From<T> for T[src]

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

impl<F> Match for F[src]

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.