Enum tc_value::UInt[][src]

pub enum UInt {
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
}

An unsigned integer.

Variants

U8(u8)
U16(u16)
U32(u32)
U64(u64)

Trait Implementations

impl Add<UInt> for UInt[src]

type Output = UInt

The resulting type after applying the + operator.

impl AddAssign<UInt> for UInt[src]

impl CastFrom<Complex> for UInt[src]

impl CastFrom<Float> for UInt[src]

impl CastFrom<Int> for UInt[src]

impl CastFrom<Number> for UInt[src]

impl Clone for UInt[src]

impl Copy for UInt[src]

impl Debug for UInt[src]

impl Default for UInt[src]

impl Display for UInt[src]

impl Div<UInt> for UInt[src]

type Output = UInt

The resulting type after applying the / operator.

impl DivAssign<UInt> for UInt[src]

impl Eq for UInt[src]

impl From<Boolean> for UInt[src]

impl From<UInt> for Int[src]

impl From<UInt> for Float[src]

impl From<UInt> for Number[src]

impl From<UInt> for Complex[src]

impl From<u16> for UInt[src]

impl From<u32> for UInt[src]

impl From<u64> for UInt[src]

impl From<u8> for UInt[src]

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

impl Mul<UInt> for UInt[src]

type Output = UInt

The resulting type after applying the * operator.

impl MulAssign<UInt> for UInt[src]

impl NumberInstance for UInt[src]

type Abs = UInt

type Exp = UInt

type Class = UIntType

impl Ord for UInt[src]

impl PartialEq<UInt> for UInt[src]

impl PartialOrd<UInt> for UInt[src]

impl Product<UInt> for UInt[src]

impl Serialize for UInt[src]

impl Sub<UInt> for UInt[src]

type Output = UInt

The resulting type after applying the - operator.

impl SubAssign<UInt> for UInt[src]

impl Sum<UInt> for UInt[src]

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

Auto Trait Implementations

impl RefUnwindSafe for UInt

impl Send for UInt

impl Sync for UInt

impl Unpin for UInt

impl UnwindSafe for UInt

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.