pub struct Uint512(/* private fields */);
Expand description
An implementation of u512 that is using strings for JSON encoding/decoding, such that the full u512 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.
§Examples
Use from
to create instances out of primitive uint types or new
to provide big
endian bytes:
let a = Uint512::from(258u128);
let b = Uint512::new([
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 1u8, 2u8,
]);
assert_eq!(a, b);
Implementations§
Source§impl Uint512
impl Uint512
pub const MAX: Uint512
pub const MIN: Uint512
Sourcepub const fn new(value: [u8; 64]) -> Self
pub const fn new(value: [u8; 64]) -> Self
Creates a Uint512(value) from a big endian representation. It’s just an alias for
from_be_bytes
.
pub const fn from_be_bytes(data: [u8; 64]) -> Self
pub const fn from_le_bytes(data: [u8; 64]) -> Self
Sourcepub const fn from_uint256(num: Uint256) -> Self
pub const fn from_uint256(num: Uint256) -> Self
A conversion from Uint256
that, unlike the one provided by the From
trait,
can be used in a const
context.
Sourcepub const fn to_be_bytes(self) -> [u8; 64]
pub const fn to_be_bytes(self) -> [u8; 64]
Returns a copy of the number as big endian bytes.
Sourcepub const fn to_le_bytes(self) -> [u8; 64]
pub const fn to_le_bytes(self) -> [u8; 64]
Returns a copy of the number as little endian bytes.
pub const fn is_zero(&self) -> bool
pub const fn pow(self, exp: u32) -> Self
Sourcepub fn ilog2(self) -> u32
pub fn ilog2(self) -> u32
Returns the base 2 logarithm of the number, rounded down.
§Panics
This function will panic if self
is zero.
pub fn checked_add(self, other: Self) -> Result<Self, OverflowError>
pub fn checked_sub(self, other: Self) -> Result<Self, OverflowError>
pub fn checked_mul(self, other: Self) -> Result<Self, OverflowError>
pub fn checked_pow(self, exp: u32) -> Result<Self, OverflowError>
pub fn checked_div(self, other: Self) -> Result<Self, DivideByZeroError>
pub fn checked_div_euclid(self, other: Self) -> Result<Self, DivideByZeroError>
pub fn checked_rem(self, other: Self) -> Result<Self, DivideByZeroError>
pub fn checked_shr(self, other: u32) -> Result<Self, OverflowError>
pub fn checked_shl(self, other: u32) -> Result<Self, OverflowError>
pub fn wrapping_add(self, other: Self) -> Self
pub fn wrapping_sub(self, other: Self) -> Self
pub fn wrapping_mul(self, other: Self) -> Self
pub fn wrapping_pow(self, other: u32) -> Self
pub fn saturating_add(self, other: Self) -> Self
pub fn saturating_sub(self, other: Self) -> Self
pub fn saturating_mul(self, other: Self) -> Self
pub fn saturating_pow(self, exp: u32) -> Self
Sourcepub const fn strict_add(self, rhs: Self) -> Self
pub const fn strict_add(self, rhs: Self) -> Self
Strict integer addition. Computes self + rhs
, panicking if overflow occurred.
This is the same as Uint512::add
but const.
Sourcepub const fn strict_sub(self, other: Self) -> Self
pub const fn strict_sub(self, other: Self) -> Self
Strict integer subtraction. Computes self - rhs
, panicking if overflow occurred.
This is the same as Uint512::sub
but const.
pub const fn abs_diff(self, other: Self) -> Self
Trait Implementations§
Source§impl<'a> AddAssign<&'a Uint512> for Uint512
impl<'a> AddAssign<&'a Uint512> for Uint512
Source§fn add_assign(&mut self, rhs: &'a Uint512)
fn add_assign(&mut self, rhs: &'a Uint512)
+=
operation. Read moreSource§impl AddAssign for Uint512
impl AddAssign for Uint512
Source§fn add_assign(&mut self, rhs: Uint512)
fn add_assign(&mut self, rhs: Uint512)
+=
operation. Read moreSource§impl<'de> Deserialize<'de> for Uint512
impl<'de> Deserialize<'de> for Uint512
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserializes from an integer string using base 10.
See the Serialize
documentation for a few more words
on the encoding of the UintXXX
/IntYYY
family.
Source§impl<'a> DivAssign<&'a Uint512> for Uint512
impl<'a> DivAssign<&'a Uint512> for Uint512
Source§fn div_assign(&mut self, rhs: &'a Uint512)
fn div_assign(&mut self, rhs: &'a Uint512)
/=
operation. Read moreSource§impl DivAssign for Uint512
impl DivAssign for Uint512
Source§fn div_assign(&mut self, rhs: Self)
fn div_assign(&mut self, rhs: Self)
/=
operation. Read moreSource§impl JsonSchema for Uint512
impl JsonSchema for Uint512
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moreSource§impl MulAssign<&Uint512> for Uint512
impl MulAssign<&Uint512> for Uint512
Source§fn mul_assign(&mut self, other: &Uint512)
fn mul_assign(&mut self, other: &Uint512)
*=
operation. Read moreSource§impl MulAssign for Uint512
impl MulAssign for Uint512
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
*=
operation. Read moreSource§impl Ord for Uint512
impl Ord for Uint512
Source§impl PartialOrd for Uint512
impl PartialOrd for Uint512
Source§impl RemAssign<&Uint512> for Uint512
impl RemAssign<&Uint512> for Uint512
Source§fn rem_assign(&mut self, other: &Uint512)
fn rem_assign(&mut self, other: &Uint512)
%=
operation. Read moreSource§impl RemAssign for Uint512
impl RemAssign for Uint512
Source§fn rem_assign(&mut self, rhs: Uint512)
fn rem_assign(&mut self, rhs: Uint512)
%=
operation. Read moreSource§impl Serialize for Uint512
impl Serialize for Uint512
Source§fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where
S: Serializer,
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where
S: Serializer,
Serializes as an integer string using base 10.
We consistently serialize all UintXXX
and IntYYY
types as strings in JSON
to ensure the best possible compatibility with clients. E.g. JavaScript and jq
only support up to ~53bit numbers without losing precision, making it hard to use
serialized u64
s on other systems than Rust or Go. Uint64
/Int64
ensure the full
64 bit range is supported. For larger integers, the use of strings is pretty much the
only reasonable way to store them in JSON.
For binary encodings (notably MessagePack) strings are used too. The reason is that
in MessagePack integers are limited to 64 bit and we strive for consistent encoding
within the UintXXX
/IntYYY
family. Also for small to mid sized values, decimal strings
are often more compact than a fixed-length binary encoding.
§Examples
Serialize to JSON:
let value = Uint64::new(17);
let serialized = to_json_vec(&value).unwrap();
assert_eq!(serialized, b"\"17\"");
Serialize to MessagePack:
let value = Uint64::new(17);
let serialized = to_msgpack_vec(&value).unwrap();
assert_eq!(serialized, [0b10100000 ^ 2, b'1', b'7']); // string of lengths 2 with value "17"
Source§impl<'a> ShlAssign<&'a u32> for Uint512
impl<'a> ShlAssign<&'a u32> for Uint512
Source§fn shl_assign(&mut self, rhs: &'a u32)
fn shl_assign(&mut self, rhs: &'a u32)
<<=
operation. Read moreSource§impl ShlAssign<u32> for Uint512
impl ShlAssign<u32> for Uint512
Source§fn shl_assign(&mut self, rhs: u32)
fn shl_assign(&mut self, rhs: u32)
<<=
operation. Read moreSource§impl<'a> ShrAssign<&'a u32> for Uint512
impl<'a> ShrAssign<&'a u32> for Uint512
Source§fn shr_assign(&mut self, rhs: &'a u32)
fn shr_assign(&mut self, rhs: &'a u32)
>>=
operation. Read moreSource§impl ShrAssign<u32> for Uint512
impl ShrAssign<u32> for Uint512
Source§fn shr_assign(&mut self, rhs: u32)
fn shr_assign(&mut self, rhs: u32)
>>=
operation. Read moreSource§impl SubAssign<&Uint512> for Uint512
impl SubAssign<&Uint512> for Uint512
Source§fn sub_assign(&mut self, other: &Uint512)
fn sub_assign(&mut self, other: &Uint512)
-=
operation. Read moreSource§impl SubAssign for Uint512
impl SubAssign for Uint512
Source§fn sub_assign(&mut self, rhs: Uint512)
fn sub_assign(&mut self, rhs: Uint512)
-=
operation. Read moreimpl Copy for Uint512
impl Eq for Uint512
impl StructuralPartialEq for Uint512
Auto Trait Implementations§
impl Freeze for Uint512
impl RefUnwindSafe for Uint512
impl Send for Uint512
impl Sync for Uint512
impl Unpin for Uint512
impl UnwindSafe for Uint512
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more