Enum tc_value::Number [−][src]
Expand description
A generic number.
Variants
Bool(Boolean)Complex(Complex)Float(Float)Int(Int)UInt(UInt)Implementations
Trait Implementations
impl AddAssign<Number> for Number[src]
impl AddAssign<Number> for Number[src]pub fn add_assign(&mut self, other: Number)[src]
pub fn add_assign(&mut self, other: Number)[src]Performs the += operation. Read more
impl<'de> Deserialize<'de> for Number[src]
impl<'de> Deserialize<'de> for Number[src]pub fn deserialize<D>(
deserializer: D
) -> Result<Number, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>, [src]
pub fn deserialize<D>(
deserializer: D
) -> Result<Number, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl DivAssign<Number> for Number[src]
impl DivAssign<Number> for Number[src]pub fn div_assign(&mut self, other: Number)[src]
pub fn div_assign(&mut self, other: Number)[src]Performs the /= operation. Read more
impl FromStream for Number[src]
impl FromStream for Number[src]type Context = ()
type Context = ()The decoding context of this type, useful in situations where the stream to be decoded may be too large to hold in main memory. Read more
pub fn from_stream<'life0, 'async_trait, D>(
_context: (),
decoder: &'life0 mut D
) -> Pin<Box<dyn Future<Output = Result<Number, <D as Decoder>::Error>> + 'async_trait + Send, Global>> where
'life0: 'async_trait,
D: Decoder + 'async_trait,
Number: 'async_trait, [src]
pub fn from_stream<'life0, 'async_trait, D>(
_context: (),
decoder: &'life0 mut D
) -> Pin<Box<dyn Future<Output = Result<Number, <D as Decoder>::Error>> + 'async_trait + Send, Global>> where
'life0: 'async_trait,
D: Decoder + 'async_trait,
Number: 'async_trait, [src]Parse this value using the given Decoder.
impl<'en> IntoStream<'en> for Number[src]
impl<'en> IntoStream<'en> for Number[src]impl MulAssign<Number> for Number[src]
impl MulAssign<Number> for Number[src]pub fn mul_assign(&mut self, other: Number)[src]
pub fn mul_assign(&mut self, other: Number)[src]Performs the *= operation. Read more
impl NumberInstance for Number[src]
impl NumberInstance for Number[src]type Abs = Number
type Exp = Number
type Class = NumberType
pub fn class(&self) -> NumberType[src]
pub fn class(&self) -> NumberType[src]Get an impl of NumberClass describing this number.
pub fn into_type(self, dtype: NumberType) -> Number[src]
pub fn into_type(self, dtype: NumberType) -> Number[src]Cast this number into the specified NumberClass.
fn and(self, other: Self) -> Self where
Boolean: CastFrom<Self>, [src]
fn and(self, other: Self) -> Self where
Boolean: CastFrom<Self>, [src]Return true if self and other are nonzero.
impl PartialOrd<Number> for Number[src]
impl PartialOrd<Number> for Number[src]pub fn partial_cmp(&self, other: &Number) -> Option<Ordering>[src]
pub fn partial_cmp(&self, other: &Number) -> 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 Number[src]
impl Serialize for Number[src]pub fn serialize<S>(
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, [src]
pub fn serialize<S>(
&self,
s: 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 SubAssign<Number> for Number[src]
impl SubAssign<Number> for Number[src]pub fn sub_assign(&mut self, other: Number)[src]
pub fn sub_assign(&mut self, other: Number)[src]Performs the -= operation. Read more
impl TryCastFrom<Value> for Number[src]
impl TryCastFrom<Value> for Number[src]fn can_cast_from(value: &Value) -> bool[src]
fn can_cast_from(value: &Value) -> bool[src]Test if value can be cast into Self.
fn opt_cast_from(value: Value) -> Option<Self>[src]
fn opt_cast_from(value: Value) -> Option<Self>[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 Copy for Number[src]
impl Eq for Number[src]
impl StructuralEq for Number[src]
Auto Trait Implementations
impl RefUnwindSafe for Number
impl Send for Number
impl Sync for Number
impl Unpin for Number
impl UnwindSafe for Number
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>,