Enum tc_value::UInt [−][src]
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.
pub fn add(self, other: UInt) -> UInt[src]
impl AddAssign<UInt> for UInt[src]
pub fn add_assign(&mut self, other: 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.
pub fn div(self, other: UInt) -> UInt[src]
impl DivAssign<UInt> for UInt[src]
pub fn div_assign(&mut self, other: UInt)[src]
impl Eq for UInt[src]
impl From<Boolean> for UInt[src]
impl From<UInt> for Float[src]
impl From<UInt> for Number[src]
impl From<UInt> for Complex[src]
impl From<UInt> for Int[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]
pub fn into_stream<E>(
self,
e: E
) -> Result<<E as Encoder<'en>>::Ok, <E as Encoder<'en>>::Error> where
E: Encoder<'en>, [src]
self,
e: E
) -> Result<<E as Encoder<'en>>::Ok, <E as Encoder<'en>>::Error> where
E: Encoder<'en>,
impl Mul<UInt> for UInt[src]
type Output = UInt
The resulting type after applying the * operator.
pub fn mul(self, other: UInt) -> UInt[src]
impl MulAssign<UInt> for UInt[src]
pub fn mul_assign(&mut self, other: UInt)[src]
impl NumberInstance for UInt[src]
type Abs = UInt
type Exp = UInt
type Class = UIntType
pub fn class(&self) -> UIntType[src]
pub fn into_type(self, dtype: UIntType) -> UInt[src]
pub fn abs(self) -> UInt[src]
pub fn pow(self, exp: <UInt as NumberInstance>::Exp) -> UInt[src]
pub fn and(self, other: Self) -> Self where
Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
pub fn not(self) -> Self where
Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
pub fn or(self, other: Self) -> Self where
Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
pub fn xor(self, other: Self) -> Self where
Boolean: CastFrom<Self>, [src]
Boolean: CastFrom<Self>,
impl Ord for UInt[src]
pub fn cmp(&self, other: &UInt) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<UInt> for UInt[src]
pub fn eq(&self, other: &UInt) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<UInt> for UInt[src]
pub fn partial_cmp(&self, other: &UInt) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Product<UInt> for UInt[src]
impl Serialize for UInt[src]
pub fn serialize<S>(
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, [src]
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
impl Sub<UInt> for UInt[src]
type Output = UInt
The resulting type after applying the - operator.
pub fn sub(self, other: UInt) -> UInt[src]
impl SubAssign<UInt> for UInt[src]
pub fn sub_assign(&mut self, other: 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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<F, T> CastFrom<F> for T where
T: From<F>, [src]
T: From<F>,
impl<T, F> CastInto<F> for T where
F: CastFrom<T>, [src]
F: CastFrom<T>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<F> Match for F[src]
pub fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]
T: TryCastFrom<Self>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]
T: CastFrom<F>,
pub fn can_cast_from(&F) -> bool[src]
pub fn opt_cast_from(f: F) -> Option<T>[src]
pub fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]
OnErr: FnOnce(&T) -> Err,
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]
T: TryCastFrom<F>,
pub fn can_cast_into(&self) -> bool[src]
pub fn opt_cast_into(self) -> Option<T>[src]
pub fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]
OnErr: FnOnce(&Self) -> Err,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,