pub type U192 = Uint<{ _ }>;Expand description
192-bit unsigned big integer.
Aliased Type§
pub struct U192 {
pub(crate) limbs: [Limb; 3],
}Fields§
§limbs: [Limb; 3]Inner limb array. Stored from least significant to most significant.
Trait Implementations§
Source§impl ArrayEncoding for U192
impl ArrayEncoding for U192
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>
Size of a byte array which encodes a big integer.
Source§fn from_be_byte_array(bytes: ByteArray<Self>) -> Self
fn from_be_byte_array(bytes: ByteArray<Self>) -> Self
Deserialize from a big-endian byte array.
Source§fn from_le_byte_array(bytes: ByteArray<Self>) -> Self
fn from_le_byte_array(bytes: ByteArray<Self>) -> Self
Deserialize from a little-endian byte array.
Source§fn to_be_byte_array(&self) -> ByteArray<Self>
fn to_be_byte_array(&self) -> ByteArray<Self>
Serialize to a big-endian byte array.
Source§fn to_le_byte_array(&self) -> ByteArray<Self>
fn to_le_byte_array(&self) -> ByteArray<Self>
Serialize to a little-endian byte array.