#[non_exhaustive]pub enum RawStorage {
}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
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
impl Clone for RawStorage
Source§fn clone(&self) -> RawStorage
fn clone(&self) -> RawStorage
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more