Enum tc_value::NumberType [−][src]
pub enum NumberType {
Bool,
Complex(ComplexType),
Float(FloatType),
Int(IntType),
UInt(UIntType),
Number,
}Expand description
The type of a generic Number.
Variants
Complex(ComplexType)Float(FloatType)Int(IntType)UInt(UIntType)Implementations
impl NumberType[src]
impl NumberType[src]pub fn uint64() -> NumberType[src]
Trait Implementations
impl Clone for NumberType[src]
impl Clone for NumberType[src]pub fn clone(&self) -> NumberType[src]
pub fn clone(&self) -> NumberType[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for NumberType[src]
impl Debug for NumberType[src]impl Default for NumberType[src]
impl Default for NumberType[src]pub fn default() -> NumberType[src]
pub fn default() -> NumberType[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for NumberType[src]
impl<'de> Deserialize<'de> for NumberType[src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<NumberType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<NumberType, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl Display for NumberType[src]
impl Display for NumberType[src]impl From<BooleanType> for NumberType[src]
impl From<BooleanType> for NumberType[src]pub fn from(_bt: BooleanType) -> NumberType[src]
pub fn from(_bt: BooleanType) -> NumberType[src]Performs the conversion.
impl From<ComplexType> for NumberType[src]
impl From<ComplexType> for NumberType[src]pub fn from(ct: ComplexType) -> NumberType[src]
pub fn from(ct: ComplexType) -> NumberType[src]Performs the conversion.
impl From<FloatType> for NumberType[src]
impl From<FloatType> for NumberType[src]pub fn from(ft: FloatType) -> NumberType[src]
pub fn from(ft: FloatType) -> NumberType[src]Performs the conversion.
impl From<IntType> for NumberType[src]
impl From<IntType> for NumberType[src]pub fn from(it: IntType) -> NumberType[src]
pub fn from(it: IntType) -> NumberType[src]Performs the conversion.
impl From<NumberType> for ValueType[src]
impl From<NumberType> for ValueType[src]fn from(nt: NumberType) -> ValueType[src]
fn from(nt: NumberType) -> ValueType[src]Performs the conversion.
impl From<UIntType> for NumberType[src]
impl From<UIntType> for NumberType[src]pub fn from(ut: UIntType) -> NumberType[src]
pub fn from(ut: UIntType) -> NumberType[src]Performs the conversion.
impl Hash for NumberType[src]
impl Hash for NumberType[src]impl NumberClass for NumberType[src]
impl NumberClass for NumberType[src]impl Ord for NumberType[src]
impl Ord for NumberType[src]impl PartialEq<NumberType> for NumberType[src]
impl PartialEq<NumberType> for NumberType[src]pub fn eq(&self, other: &NumberType) -> bool[src]
pub fn eq(&self, other: &NumberType) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
pub fn ne(&self, other: &NumberType) -> bool[src]
pub fn ne(&self, other: &NumberType) -> bool[src]This method tests for !=.
impl PartialOrd<NumberType> for NumberType[src]
impl PartialOrd<NumberType> for NumberType[src]pub fn partial_cmp(&self, other: &NumberType) -> Option<Ordering>[src]
pub fn partial_cmp(&self, other: &NumberType) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[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]
#[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
impl Serialize for NumberType[src]
impl Serialize for NumberType[src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]Serialize this value into the given Serde serializer. Read more
impl TryFrom<ValueType> for NumberType[src]
impl TryFrom<ValueType> for NumberType[src]impl Copy for NumberType[src]
impl Eq for NumberType[src]
impl StructuralEq for NumberType[src]
impl StructuralPartialEq for NumberType[src]
Auto Trait Implementations
impl RefUnwindSafe for NumberType
impl Send for NumberType
impl Sync for NumberType
impl Unpin for NumberType
impl UnwindSafe for NumberType
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<F> Match for F[src]
impl<F> Match for F[src]fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]
fn matches<T>(&self) -> bool where
T: TryCastFrom<Self>, [src]Returns true if self can be cast into the target type T.
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]
impl<F, T> TryCastFrom<F> for T where
T: CastFrom<F>, [src]pub fn can_cast_from(&F) -> bool[src]
pub fn can_cast_from(&F) -> bool[src]Test if value can be cast into Self.
pub fn opt_cast_from(f: F) -> Option<T>[src]
pub fn opt_cast_from(f: F) -> Option<T>[src]Returns Some(Self) if the source value can be cast into Self, otherwise None.
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, [src]Returns Ok(Self) if the source value can be cast into Self, otherwise calls on_err.
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]
impl<F, T> TryCastInto<T> for F where
T: TryCastFrom<F>, [src]pub fn can_cast_into(&self) -> bool[src]
pub fn can_cast_into(&self) -> bool[src]Test if self can be cast into T.
pub fn opt_cast_into(self) -> Option<T>[src]
pub fn opt_cast_into(self) -> Option<T>[src]Returns Some(T) if self can be cast into T, otherwise None.
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, [src]Returns Ok(T) if self can be cast into T, otherwise calls on_err.
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,