Skip to main content

RawStorage

Enum RawStorage 

Source
#[non_exhaustive]
pub enum RawStorage {
Show 13 variants I32(i32), I64(i64), I128(i128), Int192(Int192), Int256(Int256), Int384(Int384), Int512(Int512), Int768(Int768), Int1024(Int1024), Int1536(Int1536), Int2048(Int2048), Int3072(Int3072), Int4096(Int4096),
}
Expand description

Tagged-union view of the raw storage integer behind a DynDecimal value, with the scale stripped.

Use this to inspect or transport the underlying integer when the concrete decimal type is not statically known. The variant matches the value’s DecimalWidth one-to-one.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

I32(i32)

32-bit signed integer — D9.

§

I64(i64)

64-bit signed integer — D18.

§

I128(i128)

128-bit signed integer — D38.

§

Int192(Int192)

192-bit signed integer — D57. Gated by d57 / wide.

§

Int256(Int256)

256-bit signed integer — D76. Gated by d76 / wide.

§

Int384(Int384)

384-bit signed integer — D115. Gated by d115 / wide.

§

Int512(Int512)

512-bit signed integer — D153. Gated by d153 / wide.

§

Int768(Int768)

768-bit signed integer — D230. Gated by d230 / wide.

§

Int1024(Int1024)

1024-bit signed integer — D307. Gated by d307 / wide / x-wide.

§

Int1536(Int1536)

1536-bit signed integer — D462. Gated by d462 / x-wide.

§

Int2048(Int2048)

2048-bit signed integer — D616. Gated by d616 / x-wide.

§

Int3072(Int3072)

3072-bit signed integer — D924. Gated by d924 / xx-wide.

§

Int4096(Int4096)

4096-bit signed integer — D1232. Gated by d1232 / xx-wide.

Trait Implementations§

Source§

impl Clone for RawStorage

Source§

fn clone(&self) -> RawStorage

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for RawStorage

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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.