FixedDecimal

Struct FixedDecimal 

Source
pub struct FixedDecimal<const WIDTH: u8, const SCALE: u8>(pub Decimal);
Expand description

Decimal wrapper enforcing compile-time width/scale.

Tuple Fields§

§0: Decimal

Trait Implementations§

Source§

impl<const W: u8, const S: u8> AsValue for FixedDecimal<W, S>

Source§

fn as_empty_value() -> Value

Return an “empty” (NULL-like) value variant for this type. Used when constructing composite Value containers (arrays, maps) or representing absent optional data. This should never allocate and should not rely on default trait implementations of Self.
Source§

fn as_value(self) -> Value

Convert this value into its owned Value representation. This should perform any necessary wrapping (e.g. collections into List, decimals into Decimal) but avoid lossy transformations unless explicitly documented.
Source§

fn try_from_value(value: Value) -> Result<FixedDecimal<W, S>, Error>
where FixedDecimal<W, S>: Sized,

Attempt to convert a dynamic Value into Self. Read more
Source§

fn parse(input: impl AsRef<str>) -> Result<FixedDecimal<W, S>, Error>

Parse a full string into Self delegating to [AsValue::extract]. Read more
Source§

impl<const WIDTH: u8, const SCALE: u8> Clone for FixedDecimal<WIDTH, SCALE>

Source§

fn clone(&self) -> FixedDecimal<WIDTH, SCALE>

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<const WIDTH: u8, const SCALE: u8> Debug for FixedDecimal<WIDTH, SCALE>

Source§

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

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

impl<const WIDTH: u8, const SCALE: u8> Default for FixedDecimal<WIDTH, SCALE>

Source§

fn default() -> FixedDecimal<WIDTH, SCALE>

Returns the “default value” for a type. Read more
Source§

impl<const W: u8, const S: u8> From<Decimal> for FixedDecimal<W, S>

Source§

fn from(value: Decimal) -> FixedDecimal<W, S>

Converts to this type from the input type.
Source§

impl<const WIDTH: u8, const SCALE: u8> Hash for FixedDecimal<WIDTH, SCALE>

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<const WIDTH: u8, const SCALE: u8> Ord for FixedDecimal<WIDTH, SCALE>

Source§

fn cmp(&self, other: &FixedDecimal<WIDTH, SCALE>) -> Ordering

This method returns an Ordering between self and other. Read more
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<const WIDTH: u8, const SCALE: u8> PartialEq for FixedDecimal<WIDTH, SCALE>

Source§

fn eq(&self, other: &FixedDecimal<WIDTH, SCALE>) -> bool

Tests for self and other values to be equal, and is used by ==.
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<const WIDTH: u8, const SCALE: u8> PartialOrd for FixedDecimal<WIDTH, SCALE>

Source§

fn partial_cmp(&self, other: &FixedDecimal<WIDTH, SCALE>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
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<const WIDTH: u8, const SCALE: u8> Copy for FixedDecimal<WIDTH, SCALE>

Source§

impl<const WIDTH: u8, const SCALE: u8> Eq for FixedDecimal<WIDTH, SCALE>

Source§

impl<const WIDTH: u8, const SCALE: u8> StructuralPartialEq for FixedDecimal<WIDTH, SCALE>

Auto Trait Implementations§

§

impl<const WIDTH: u8, const SCALE: u8> Freeze for FixedDecimal<WIDTH, SCALE>

§

impl<const WIDTH: u8, const SCALE: u8> RefUnwindSafe for FixedDecimal<WIDTH, SCALE>

§

impl<const WIDTH: u8, const SCALE: u8> Send for FixedDecimal<WIDTH, SCALE>

§

impl<const WIDTH: u8, const SCALE: u8> Sync for FixedDecimal<WIDTH, SCALE>

§

impl<const WIDTH: u8, const SCALE: u8> Unpin for FixedDecimal<WIDTH, SCALE>

§

impl<const WIDTH: u8, const SCALE: u8> UnwindSafe for FixedDecimal<WIDTH, SCALE>

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<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, 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.