Number

Enum Number 

Source
pub enum Number {
    Int64(i64),
    UInt64(u64),
    Float64(f64),
    Decimal64(Decimal64),
    Decimal128(Decimal128),
    Decimal256(Decimal256),
}
Expand description

Represents a JSON number with multiple possible internal representations.

This enum provides a unified type for JSON numbers while supporting various internal representations to optimize for different use cases:

  • Integer types (signed/unsigned) for whole numbers
  • Floating-point for scientific notation or fractional values
  • Decimal types for exact decimal representation with different precision levels

The parser automatically selects the most appropriate representation based on the input value’s characteristics, allowing for both performance and precision.

Variants§

§

Int64(i64)

64-bit signed integer, suitable for most whole numbers

§

UInt64(u64)

64-bit unsigned integer, for large positive whole numbers

§

Float64(f64)

64-bit floating-point, for scientific notation and approximate decimals

§

Decimal64(Decimal64)

64-bit decimal with exact precision, for financial calculations

§

Decimal128(Decimal128)

128-bit decimal with extended precision, for larger exact decimals

§

Decimal256(Decimal256)

256-bit decimal with maximum precision, for extremely large exact decimals

Implementations§

Source§

impl Number

Source

pub fn as_i128(&self) -> Option<i128>

Returns the i128 representation of the number, if possible.

This method returns None if the number cannot be represented as an i64.

Source

pub fn as_i64(&self) -> Option<i64>

Returns the i64 representation of the number, if possible.

This method returns None if the number cannot be represented as an i64.

Source

pub fn as_u64(&self) -> Option<u64>

Returns the u64 representation of the number, if possible.

This method returns None if the number cannot be represented as a u64.

Source

pub fn as_f64(&self) -> f64

Returns the f64 representation of the number.

This method always returns a value, but may lose precision for very large numbers.

Source

pub fn neg(&self) -> Result<Number, Error>

Returns the negation of the number.

This method returns an error if the negation would overflow.

Source

pub fn add(&self, other: Number) -> Result<Number, Error>

Returns the sum of the number and another number.

This method returns an error if the sum would overflow.

Source

pub fn sub(&self, other: Number) -> Result<Number, Error>

Returns the difference of the number and another number.

This method returns an error if the difference would overflow.

Source

pub fn mul(&self, other: Number) -> Result<Number, Error>

Returns the product of the number and another number.

This method returns an error if the product would overflow.

Source

pub fn div(&self, other: Number) -> Result<Number, Error>

Returns the quotient of the number and another number.

This method returns an error if the divisor is zero.

Source

pub fn rem(&self, other: Number) -> Result<Number, Error>

Returns the remainder of the number divided by another number.

This method returns an error if the divisor is zero.

Trait Implementations§

Source§

impl Clone for Number

Source§

fn clone(&self) -> Number

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Number

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Number

Source§

fn default() -> Self

Returns the default value for the Number enum.

The default value is Number::UInt64(0).

Source§

impl<'de> Deserialize<'de> for Number

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserializes a JSON number into the Number enum.

This implementation supports deserialization from JSON integers and floats. It automatically selects the most suitable internal representation based on the input value.

Source§

impl Display for Number

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the number as a string.

This method returns a string representation of the number in its internal format.

Source§

impl Ord for Number

Source§

fn cmp(&self, other: &Self) -> Ordering

Returns the ordering of the number compared to another number.

This method implements precise comparison between different number types:

  • When comparing decimal types with other types, it converts the non-decimal type to a decimal representation to preserve precision
  • When comparing between decimal types of different precision, it upgrades the lower precision decimal to match the higher precision one
  • Only falls back to floating-point comparison as a last resort
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq<&Number> for Number

Source§

fn eq(&self, other: &&Number) -> bool

Returns true if the number is equal to another number.

This method compares the numbers using their internal representations.

1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Number> for &Number

Source§

fn eq(&self, other: &Number) -> bool

Returns true if the number is equal to another number.

This method compares the numbers using their internal representations.

1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq for Number

Source§

fn eq(&self, other: &Self) -> bool

Returns true if the number is equal to another number.

This method compares the numbers using their internal representations.

1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd<&Number> for Number

Source§

fn partial_cmp(&self, other: &&Number) -> Option<Ordering>

Returns the ordering of the number compared to another number.

This method compares the numbers using their internal representations.

1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd<Number> for &Number

Source§

fn partial_cmp(&self, other: &Number) -> Option<Ordering>

Returns the ordering of the number compared to another number.

This method compares the numbers using their internal representations.

1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl PartialOrd for Number

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

Returns the ordering of the number compared to another number.

This method compares the numbers using their internal representations.

1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for Number

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serializes the Number enum into a JSON number.

This implementation supports serialization to JSON integers and floats. It automatically selects the most suitable output format based on the internal representation.

When the arbitrary_precision feature is enabled, decimal types are serialized with full precision using the optimized formatting functions. When disabled, decimal types are converted to f64.

Source§

impl Eq for Number

Auto Trait Implementations§

§

impl Freeze for Number

§

impl RefUnwindSafe for Number

§

impl Send for Number

§

impl Sync for Number

§

impl Unpin for Number

§

impl UnwindSafe for Number

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,