pub type U256 = Uint<crypto_bigint::::uint::U256::{constant#0}>;
Expand description
256-bit unsigned big integer.
Aliased Type§
struct U256 { /* private fields */ }
Implementations
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn from_words(arr: [u64; LIMBS]) -> Uint<LIMBS>
pub const fn from_words(arr: [u64; LIMBS]) -> Uint<LIMBS>
Sourcepub fn as_words_mut(&mut self) -> &mut [u64; LIMBS]
pub fn as_words_mut(&mut self) -> &mut [u64; LIMBS]
Borrow the inner limbs as a mutable array of Word
s.
Sourcepub fn as_limbs_mut(&mut self) -> &mut [Limb; LIMBS]
pub fn as_limbs_mut(&mut self) -> &mut [Limb; LIMBS]
Borrow the limbs of this Uint
mutably.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn adc(&self, rhs: &Uint<LIMBS>, carry: Limb) -> (Uint<LIMBS>, Limb)
pub const fn adc(&self, rhs: &Uint<LIMBS>, carry: Limb) -> (Uint<LIMBS>, Limb)
Computes a + b + carry
, returning the result along with the new carry.
Sourcepub const fn saturating_add(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn saturating_add(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Perform saturating addition, returning MAX
on overflow.
Sourcepub const fn wrapping_add(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn wrapping_add(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Perform wrapping addition, discarding overflow.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn wrapping_and(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn wrapping_and(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Perform wrapping bitwise AND
.
There’s no way wrapping could ever happen. This function exists so that all operations are accounted for in the wrapping operations
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn wrapping_or(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn wrapping_or(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Perform wrapping bitwise OR
.
There’s no way wrapping could ever happen. This function exists so that all operations are accounted for in the wrapping operations
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn wrapping_xor(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn wrapping_xor(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Perform wrapping bitwise `XOR``.
There’s no way wrapping could ever happen. This function exists so that all operations are accounted for in the wrapping operations
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn bit_vartime(&self, index: usize) -> bool
pub const fn bit_vartime(&self, index: usize) -> bool
Returns true
if the bit at position index
is set, false
otherwise.
§Remarks
This operation is variable time with respect to index
only.
Sourcepub const fn bits_vartime(&self) -> usize
pub const fn bits_vartime(&self) -> usize
Calculate the number of bits needed to represent this number.
Sourcepub const fn leading_zeros(&self) -> usize
pub const fn leading_zeros(&self) -> usize
Calculate the number of leading zeros in the binary representation of this number.
Sourcepub const fn leading_zeros_vartime(&self) -> usize
pub const fn leading_zeros_vartime(&self) -> usize
Calculate the number of leading zeros in the binary representation of this number,
variable time in self
.
Sourcepub const fn trailing_zeros(&self) -> usize
pub const fn trailing_zeros(&self) -> usize
Calculate the number of trailing zeros in the binary representation of this number.
Sourcepub const fn trailing_zeros_vartime(&self) -> usize
pub const fn trailing_zeros_vartime(&self) -> usize
Calculate the number of trailing zeros in the binary representation of this number,
variable time in self
.
Sourcepub const fn trailing_ones(&self) -> usize
pub const fn trailing_ones(&self) -> usize
Calculate the number of trailing ones in the binary representation of this number.
Sourcepub const fn trailing_ones_vartime(&self) -> usize
pub const fn trailing_ones_vartime(&self) -> usize
Calculate the number of trailing ones in the binary representation of this number,
variable time in self
.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn cmp_vartime(&self, rhs: &Uint<LIMBS>) -> Ordering
pub const fn cmp_vartime(&self, rhs: &Uint<LIMBS>) -> Ordering
Returns the Ordering between self
and rhs
in variable time.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn ct_div_rem_limb_with_reciprocal(
&self,
reciprocal: &Reciprocal,
) -> (Uint<LIMBS>, Limb)
pub const fn ct_div_rem_limb_with_reciprocal( &self, reciprocal: &Reciprocal, ) -> (Uint<LIMBS>, Limb)
Computes self
/ rhs
using a pre-made reciprocal,
returns the quotient (q) and remainder (r).
Sourcepub fn div_rem_limb_with_reciprocal(
&self,
reciprocal: &CtOption<Reciprocal>,
) -> CtOption<(Uint<LIMBS>, Limb)>
pub fn div_rem_limb_with_reciprocal( &self, reciprocal: &CtOption<Reciprocal>, ) -> CtOption<(Uint<LIMBS>, Limb)>
Computes self
/ rhs
using a pre-made reciprocal,
returns the quotient (q) and remainder (r).
Sourcepub fn div_rem_limb(&self, rhs: NonZero<Limb>) -> (Uint<LIMBS>, Limb)
pub fn div_rem_limb(&self, rhs: NonZero<Limb>) -> (Uint<LIMBS>, Limb)
Computes self
/ rhs
, returns the quotient (q) and remainder (r).
Sourcepub const fn const_rem(&self, rhs: &Uint<LIMBS>) -> (Uint<LIMBS>, CtChoice)
pub const fn const_rem(&self, rhs: &Uint<LIMBS>) -> (Uint<LIMBS>, CtChoice)
Computes self
% rhs
, returns the remainder and
and the truthy value for is_some or the falsy value for is_none.
NOTE: Use only if you need to access const fn. Otherwise use Self::rem
.
This is variable only with respect to rhs
.
When used with a fixed rhs
, this function is constant-time with respect
to self
.
Sourcepub const fn const_rem_wide(
lower_upper: (Uint<LIMBS>, Uint<LIMBS>),
rhs: &Uint<LIMBS>,
) -> (Uint<LIMBS>, CtChoice)
pub const fn const_rem_wide( lower_upper: (Uint<LIMBS>, Uint<LIMBS>), rhs: &Uint<LIMBS>, ) -> (Uint<LIMBS>, CtChoice)
Computes self
% rhs
, returns the remainder and
and the truthy value for is_some or the falsy value for is_none.
This is variable only with respect to rhs
.
When used with a fixed rhs
, this function is constant-time with respect
to self
.
Sourcepub const fn rem2k(&self, k: usize) -> Uint<LIMBS>
pub const fn rem2k(&self, k: usize) -> Uint<LIMBS>
Computes self
% 2^k. Faster than reduce since its a power of 2.
Limited to 2^16-1 since Uint doesn’t support higher.
Sourcepub fn div_rem(&self, rhs: &NonZero<Uint<LIMBS>>) -> (Uint<LIMBS>, Uint<LIMBS>)
pub fn div_rem(&self, rhs: &NonZero<Uint<LIMBS>>) -> (Uint<LIMBS>, Uint<LIMBS>)
Computes self / rhs, returns the quotient, remainder.
Sourcepub fn rem(&self, rhs: &NonZero<Uint<LIMBS>>) -> Uint<LIMBS>
pub fn rem(&self, rhs: &NonZero<Uint<LIMBS>>) -> Uint<LIMBS>
Computes self % rhs, returns the remainder.
Sourcepub const fn wrapping_div(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn wrapping_div(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Wrapped division is just normal division i.e. self
/ rhs
There’s no way wrapping could ever happen.
This function exists, so that all operations are accounted for in the wrapping operations.
Panics if rhs == 0
.
Sourcepub fn checked_div(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>
pub fn checked_div(&self, rhs: &Uint<LIMBS>) -> CtOption<Uint<LIMBS>>
Perform checked division, returning a CtOption
which is_some
only if the rhs != 0
Sourcepub const fn wrapping_rem(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn wrapping_rem(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Wrapped (modular) remainder calculation is just self
% rhs
.
There’s no way wrapping could ever happen.
This function exists, so that all operations are accounted for in the wrapping operations.
Panics if rhs == 0
.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn from_be_slice(bytes: &[u8]) -> Uint<LIMBS>
pub const fn from_be_slice(bytes: &[u8]) -> Uint<LIMBS>
Create a new Uint
from the provided big endian bytes.
Sourcepub const fn from_be_hex(hex: &str) -> Uint<LIMBS>
pub const fn from_be_hex(hex: &str) -> Uint<LIMBS>
Create a new Uint
from the provided big endian hex string.
Sourcepub const fn from_le_slice(bytes: &[u8]) -> Uint<LIMBS>
pub const fn from_le_slice(bytes: &[u8]) -> Uint<LIMBS>
Create a new Uint
from the provided little endian bytes.
Sourcepub const fn from_le_hex(hex: &str) -> Uint<LIMBS>
pub const fn from_le_hex(hex: &str) -> Uint<LIMBS>
Create a new Uint
from the provided little endian hex string.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn from_wide_word(n: u128) -> Uint<LIMBS>
pub const fn from_wide_word(n: u128) -> Uint<LIMBS>
Create a Uint
from a WideWord
(const-friendly)
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn inv_mod2k_vartime(&self, k: usize) -> Uint<LIMBS>
pub const fn inv_mod2k_vartime(&self, k: usize) -> Uint<LIMBS>
Computes 1/self
mod 2^k
.
This method is constant-time w.r.t. self
but not k
.
Conditions: self
< 2^k and self
must be odd
Sourcepub const fn inv_mod2k(&self, k: usize) -> Uint<LIMBS>
pub const fn inv_mod2k(&self, k: usize) -> Uint<LIMBS>
Computes 1/self
mod 2^k
.
Conditions: self
< 2^k and self
must be odd
Sourcepub const fn inv_odd_mod_bounded(
&self,
modulus: &Uint<LIMBS>,
bits: usize,
modulus_bits: usize,
) -> (Uint<LIMBS>, CtChoice)
pub const fn inv_odd_mod_bounded( &self, modulus: &Uint<LIMBS>, bits: usize, modulus_bits: usize, ) -> (Uint<LIMBS>, CtChoice)
Computes the multiplicative inverse of self
mod modulus
, where modulus
is odd.
In other words self^-1 mod modulus
.
bits
and modulus_bits
are the bounds on the bit size
of self
and modulus
, respectively
(the inversion speed will be proportional to bits + modulus_bits
).
The second element of the tuple is the truthy value if an inverse exists,
otherwise it is a falsy value.
Note: variable time in bits
and modulus_bits
.
The algorithm is the same as in GMP 6.2.1’s mpn_sec_invert
.
Sourcepub const fn inv_odd_mod(
&self,
modulus: &Uint<LIMBS>,
) -> (Uint<LIMBS>, CtChoice)
pub const fn inv_odd_mod( &self, modulus: &Uint<LIMBS>, ) -> (Uint<LIMBS>, CtChoice)
Computes the multiplicative inverse of self
mod modulus
, where modulus
is odd.
Returns (inverse, CtChoice::TRUE)
if an inverse exists,
otherwise (undefined, CtChoice::FALSE)
.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub fn mul<const HLIMBS: usize>(
&self,
rhs: &Uint<HLIMBS>,
) -> <Uint<HLIMBS> as ConcatMixed<Uint<LIMBS>>>::MixedOutput
pub fn mul<const HLIMBS: usize>( &self, rhs: &Uint<HLIMBS>, ) -> <Uint<HLIMBS> as ConcatMixed<Uint<LIMBS>>>::MixedOutput
Multiply self
by rhs
, returning a concatenated “wide” result.
Sourcepub const fn mul_wide<const HLIMBS: usize>(
&self,
rhs: &Uint<HLIMBS>,
) -> (Uint<LIMBS>, Uint<HLIMBS>)
pub const fn mul_wide<const HLIMBS: usize>( &self, rhs: &Uint<HLIMBS>, ) -> (Uint<LIMBS>, Uint<HLIMBS>)
Compute “wide” multiplication, with a product twice the size of the input.
Returns a tuple containing the (lo, hi)
components of the product.
§Ordering note
Releases of crypto-bigint
prior to v0.3 used (hi, lo)
ordering
instead. This has been changed for better consistency with the rest of
the APIs in this crate.
For more info see: https://github.com/RustCrypto/crypto-bigint/issues/4
Sourcepub const fn saturating_mul<const HLIMBS: usize>(
&self,
rhs: &Uint<HLIMBS>,
) -> Uint<LIMBS>
pub const fn saturating_mul<const HLIMBS: usize>( &self, rhs: &Uint<HLIMBS>, ) -> Uint<LIMBS>
Perform saturating multiplication, returning MAX
on overflow.
Sourcepub const fn wrapping_mul<const H: usize>(&self, rhs: &Uint<H>) -> Uint<LIMBS>
pub const fn wrapping_mul<const H: usize>(&self, rhs: &Uint<H>) -> Uint<LIMBS>
Perform wrapping multiplication, discarding overflow.
Sourcepub fn square(&self) -> <Uint<LIMBS> as Concat>::Output
pub fn square(&self) -> <Uint<LIMBS> as Concat>::Output
Square self, returning a concatenated “wide” result.
Sourcepub const fn square_wide(&self) -> (Uint<LIMBS>, Uint<LIMBS>)
pub const fn square_wide(&self) -> (Uint<LIMBS>, Uint<LIMBS>)
Square self, returning a “wide” result in two parts as (lo, hi).
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn mul_mod_special(&self, rhs: &Uint<LIMBS>, c: Limb) -> Uint<LIMBS>
pub const fn mul_mod_special(&self, rhs: &Uint<LIMBS>, c: Limb) -> Uint<LIMBS>
Computes self * rhs mod p
for the special modulus
p = MAX+1-c
where c
is small enough to fit in a single Limb
.
For the modulus reduction, this function implements Algorithm 14.47 from
the “Handbook of Applied Cryptography”, by A. Menezes, P. van Oorschot,
and S. Vanstone, CRC Press, 1996.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn wrapping_neg(&self) -> Uint<LIMBS>
pub const fn wrapping_neg(&self) -> Uint<LIMBS>
Perform wrapping negation.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn shl_vartime(&self, n: usize) -> Uint<LIMBS>
pub const fn shl_vartime(&self, n: usize) -> Uint<LIMBS>
Computes self << shift
.
NOTE: this operation is variable time with respect to n
ONLY.
When used with a fixed n
, this function is constant-time with respect
to self
.
Sourcepub const fn shl_vartime_wide(
lower_upper: (Uint<LIMBS>, Uint<LIMBS>),
n: usize,
) -> (Uint<LIMBS>, Uint<LIMBS>)
pub const fn shl_vartime_wide( lower_upper: (Uint<LIMBS>, Uint<LIMBS>), n: usize, ) -> (Uint<LIMBS>, Uint<LIMBS>)
Computes a left shift on a wide input as (lo, hi)
.
NOTE: this operation is variable time with respect to n
ONLY.
When used with a fixed n
, this function is constant-time with respect
to self
.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn shr_vartime(&self, shift: usize) -> Uint<LIMBS>
pub const fn shr_vartime(&self, shift: usize) -> Uint<LIMBS>
Computes self >> n
.
NOTE: this operation is variable time with respect to n
ONLY.
When used with a fixed n
, this function is constant-time with respect
to self
.
Sourcepub const fn shr_vartime_wide(
lower_upper: (Uint<LIMBS>, Uint<LIMBS>),
n: usize,
) -> (Uint<LIMBS>, Uint<LIMBS>)
pub const fn shr_vartime_wide( lower_upper: (Uint<LIMBS>, Uint<LIMBS>), n: usize, ) -> (Uint<LIMBS>, Uint<LIMBS>)
Computes a right shift on a wide input as (lo, hi)
.
NOTE: this operation is variable time with respect to n
ONLY.
When used with a fixed n
, this function is constant-time with respect
to self
.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn sqrt(&self) -> Uint<LIMBS>
👎Deprecated since 0.5.3: This functionality will be moved to sqrt_vartime
in a future release.
pub const fn sqrt(&self) -> Uint<LIMBS>
sqrt_vartime
in a future release.See Self::sqrt_vartime
.
Sourcepub const fn sqrt_vartime(&self) -> Uint<LIMBS>
pub const fn sqrt_vartime(&self) -> Uint<LIMBS>
Computes √(self
)
Uses Brent & Zimmermann, Modern Computer Arithmetic, v0.5.9, Algorithm 1.13
Callers can check if self
is a square by squaring the result
Sourcepub const fn wrapping_sqrt(&self) -> Uint<LIMBS>
👎Deprecated since 0.5.3: This functionality will be moved to wrapping_sqrt_vartime
in a future release.
pub const fn wrapping_sqrt(&self) -> Uint<LIMBS>
wrapping_sqrt_vartime
in a future release.Sourcepub const fn wrapping_sqrt_vartime(&self) -> Uint<LIMBS>
pub const fn wrapping_sqrt_vartime(&self) -> Uint<LIMBS>
Wrapped sqrt is just normal √(self
)
There’s no way wrapping could ever happen.
This function exists, so that all operations are accounted for in the wrapping operations.
Sourcepub fn checked_sqrt(&self) -> CtOption<Uint<LIMBS>>
👎Deprecated since 0.5.3: This functionality will be moved to checked_sqrt_vartime
in a future release.
pub fn checked_sqrt(&self) -> CtOption<Uint<LIMBS>>
checked_sqrt_vartime
in a future release.Sourcepub fn checked_sqrt_vartime(&self) -> CtOption<Uint<LIMBS>>
pub fn checked_sqrt_vartime(&self) -> CtOption<Uint<LIMBS>>
Perform checked sqrt, returning a CtOption
which is_some
only if the √(self
)² == self
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Sourcepub const fn sbb(&self, rhs: &Uint<LIMBS>, borrow: Limb) -> (Uint<LIMBS>, Limb)
pub const fn sbb(&self, rhs: &Uint<LIMBS>, borrow: Limb) -> (Uint<LIMBS>, Limb)
Computes a - (b + borrow)
, returning the result along with the new borrow.
Sourcepub const fn saturating_sub(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn saturating_sub(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Perform saturating subtraction, returning ZERO
on underflow.
Sourcepub const fn wrapping_sub(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
pub const fn wrapping_sub(&self, rhs: &Uint<LIMBS>) -> Uint<LIMBS>
Perform wrapping subtraction, discarding underflow and wrapping around the boundary of the type.
Source§impl<const LIMBS: usize> Uint<LIMBS>
impl<const LIMBS: usize> Uint<LIMBS>
Trait Implementations§
Source§impl FieldBytesEncoding<NistP256> for U256
impl FieldBytesEncoding<NistP256> for U256
Source§fn decode_field_bytes(field_bytes: &FieldBytes) -> Self
fn decode_field_bytes(field_bytes: &FieldBytes) -> Self
Source§fn encode_field_bytes(&self) -> FieldBytes
fn encode_field_bytes(&self) -> FieldBytes
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U1024::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U1024::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1024::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U128::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U128::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U128::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U1536::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U1536::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1536::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U1792::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U1792::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U1792::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U192::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U192::{constant#0}>
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>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U192::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U2048::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U2048::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U2048::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U256::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U256::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U256::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U3072::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U3072::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3072::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U3584::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U3584::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U3584::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U384::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U384::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U384::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U4096::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U4096::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U4096::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U448::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U448::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U448::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U512::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U512::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U512::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U576::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U576::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U576::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U6144::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U6144::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U6144::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U64::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U64::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U64::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U768::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U768::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U768::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U8192::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U8192::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U8192::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U832::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U832::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U832::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl ArrayEncoding for Uint<crypto_bigint::::uint::U896::{constant#0}>
impl ArrayEncoding for Uint<crypto_bigint::::uint::U896::{constant#0}>
Source§type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>, B0>
type ByteSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>, B0>
Source§fn from_be_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
fn from_be_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
Source§fn from_le_byte_array(
bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>,
) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
fn from_le_byte_array( bytes: GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>, ) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
Source§fn to_be_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_be_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>
Source§fn to_le_byte_array(
&self,
) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>
fn to_le_byte_array( &self, ) -> GenericArray<u8, <Uint<crypto_bigint::::uint::U896::{constant#0}> as ArrayEncoding>::ByteSize>
Source§impl<const LIMBS: usize> BitAndAssign<&Uint<LIMBS>> for Uint<LIMBS>
impl<const LIMBS: usize> BitAndAssign<&Uint<LIMBS>> for Uint<LIMBS>
Source§fn bitand_assign(&mut self, other: &Uint<LIMBS>)
fn bitand_assign(&mut self, other: &Uint<LIMBS>)
&=
operation. Read moreSource§impl<const LIMBS: usize> BitAndAssign for Uint<LIMBS>
impl<const LIMBS: usize> BitAndAssign for Uint<LIMBS>
Source§fn bitand_assign(&mut self, other: Uint<LIMBS>)
fn bitand_assign(&mut self, other: Uint<LIMBS>)
&=
operation. Read moreSource§impl<const LIMBS: usize> BitOrAssign<&Uint<LIMBS>> for Uint<LIMBS>
impl<const LIMBS: usize> BitOrAssign<&Uint<LIMBS>> for Uint<LIMBS>
Source§fn bitor_assign(&mut self, other: &Uint<LIMBS>)
fn bitor_assign(&mut self, other: &Uint<LIMBS>)
|=
operation. Read moreSource§impl<const LIMBS: usize> BitOrAssign for Uint<LIMBS>
impl<const LIMBS: usize> BitOrAssign for Uint<LIMBS>
Source§fn bitor_assign(&mut self, other: Uint<LIMBS>)
fn bitor_assign(&mut self, other: Uint<LIMBS>)
|=
operation. Read moreSource§impl<const LIMBS: usize> BitXorAssign<&Uint<LIMBS>> for Uint<LIMBS>
impl<const LIMBS: usize> BitXorAssign<&Uint<LIMBS>> for Uint<LIMBS>
Source§fn bitxor_assign(&mut self, other: &Uint<LIMBS>)
fn bitxor_assign(&mut self, other: &Uint<LIMBS>)
^=
operation. Read moreSource§impl<const LIMBS: usize> BitXorAssign for Uint<LIMBS>
impl<const LIMBS: usize> BitXorAssign for Uint<LIMBS>
Source§fn bitxor_assign(&mut self, other: Uint<LIMBS>)
fn bitxor_assign(&mut self, other: Uint<LIMBS>)
^=
operation. Read moreSource§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#102}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#102}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#102}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#102}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U2048::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U2048::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#102}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#102}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#102}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#102}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#102}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#102}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#107}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#107}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#107}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#107}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U3072::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U3072::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#107}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#107}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#107}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#107}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#107}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#107}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#112}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#112}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#112}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#112}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U3584::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U3584::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#112}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#112}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#112}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#112}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#112}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#112}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#117}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#117}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#117}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#117}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U4096::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U4096::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#117}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#117}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#117}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#117}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#117}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#117}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#122}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#122}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#122}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#122}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U4224::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U4224::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#122}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#122}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#122}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#122}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#122}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#122}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#127}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#127}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#127}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#127}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U4352::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U4352::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#127}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#127}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#127}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#127}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#127}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#127}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#132}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#132}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#132}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#132}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U6144::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U6144::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#132}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#132}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#132}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#132}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#132}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#132}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#137}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#137}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#137}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#137}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U8192::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U8192::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#137}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#137}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#137}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#137}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#137}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#137}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#142}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#142}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#142}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#142}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U16384::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U16384::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#142}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#142}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#142}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#142}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#142}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#142}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#147}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#147}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#147}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#147}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U192::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U192::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#147}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#147}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#147}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#147}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#147}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#147}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#149}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#149}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#149}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#149}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U192::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U192::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#149}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#149}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#149}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#149}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#149}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#149}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#151}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#151}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#151}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#151}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#151}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#151}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#151}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#151}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#151}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#151}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#153}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#153}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#153}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#153}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#153}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#153}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#153}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#153}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#153}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#153}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#155}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#155}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#155}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#155}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#155}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#155}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#155}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#155}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#155}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#155}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#157}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#157}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#157}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#157}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#157}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#157}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#157}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#157}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#157}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#157}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#159}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#159}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#159}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#159}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#159}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#159}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#159}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#159}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#159}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#159}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#161}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#161}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#161}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#161}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U320::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#161}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#161}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#161}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#161}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#161}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#161}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#163}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#163}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#163}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#163}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#163}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#163}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#163}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#163}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#163}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#163}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#165}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#165}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#165}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#165}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#165}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#165}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#165}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#165}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#165}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#165}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#167}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#167}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#167}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#167}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#167}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#167}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#167}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#167}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#167}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#167}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#169}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#169}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#169}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#169}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#169}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#169}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#169}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#169}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#169}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#169}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#171}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#171}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#171}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#171}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#171}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#171}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#171}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#171}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#171}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#171}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#173}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#173}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#173}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#173}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#173}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#173}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#173}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#173}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#173}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#173}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#175}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#175}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#175}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#175}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#175}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#175}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#175}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#175}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#175}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#175}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#177}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#177}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#177}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#177}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#177}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#177}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#177}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#177}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#177}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#177}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#179}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#179}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#179}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#179}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#179}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#179}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#179}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#179}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#179}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#179}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#181}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#181}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#181}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#181}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U448::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#181}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#181}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#181}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#181}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#181}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#181}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#183}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#183}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#183}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#183}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#183}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#183}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#183}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#183}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#183}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#183}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#185}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#185}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#185}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#185}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#185}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#185}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#185}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#185}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#185}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#185}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#187}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#187}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#187}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#187}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#187}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#187}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#187}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#187}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#187}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#187}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#189}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#189}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#189}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#189}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#189}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#189}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#189}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#189}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#189}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#189}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#191}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#191}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#191}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#191}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#191}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#191}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#191}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#191}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#191}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#191}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#193}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#193}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#193}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#193}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#193}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#193}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#193}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#193}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#193}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#193}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#195}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#195}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#195}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#195}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#195}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#195}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#195}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#195}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#195}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#195}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#197}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#197}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#197}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#197}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#197}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#197}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#197}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#197}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#197}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#197}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#199}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#199}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#199}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#199}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#199}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#199}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#199}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#199}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#199}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#199}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#201}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#201}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#201}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#201}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#201}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#201}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#201}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#201}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#201}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#201}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#203}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#203}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#203}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#203}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#203}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#203}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#203}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#203}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#203}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#203}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#205}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#205}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#205}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#205}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#205}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#205}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#205}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#205}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#205}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#205}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#207}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#207}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#207}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#207}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#207}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#207}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#207}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#207}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#207}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#207}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#209}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#209}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#209}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#209}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U576::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#209}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#209}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#209}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#209}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#209}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#209}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#211}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#211}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#211}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#211}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#211}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#211}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#211}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#211}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#211}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#211}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#213}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#213}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#213}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#213}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#213}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#213}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#213}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#213}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#213}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#213}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#215}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#215}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#215}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#215}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#215}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#215}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#215}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#215}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#215}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#215}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#217}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#217}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#217}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#217}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#217}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#217}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#217}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#217}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#217}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#217}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#219}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#219}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#219}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#219}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#219}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#219}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#219}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#219}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#219}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#219}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#221}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#221}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#221}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#221}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#221}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#221}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#221}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#221}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#221}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#221}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#223}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#223}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#223}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#223}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#223}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#223}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#223}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#223}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#223}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#223}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#225}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#225}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#225}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#225}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#225}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#225}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#225}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#225}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#225}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#225}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#227}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#227}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#227}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#227}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#227}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#227}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#227}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#227}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#227}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#227}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#229}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#229}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#229}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#229}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#229}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#229}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#229}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#229}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#229}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#229}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#231}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#231}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#231}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#231}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#231}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#231}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#231}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#231}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#231}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#231}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#233}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#233}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#233}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#233}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#233}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#233}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#233}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#233}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#233}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#233}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#235}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#235}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#235}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#235}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#235}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#235}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#235}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#235}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#235}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#235}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#237}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#237}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#237}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#237}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#237}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#237}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#237}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#237}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#237}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#237}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#239}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#239}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#239}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#239}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#239}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#239}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#239}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#239}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#239}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#239}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#241}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#241}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#241}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#241}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#241}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#241}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#241}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#241}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#241}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#241}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#243}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#243}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#243}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#243}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#243}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#243}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#243}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#243}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#243}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#243}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#245}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#245}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#245}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#245}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U704::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#245}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#245}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#245}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#245}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#245}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#245}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#247}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#247}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#247}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#247}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#247}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#247}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#247}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#247}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#247}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#247}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#249}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#249}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#249}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#249}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#249}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#249}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#249}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#249}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#249}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#249}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#251}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#251}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#251}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#251}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#251}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#251}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#251}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#251}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#251}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#251}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#253}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#253}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#253}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#253}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#253}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#253}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#253}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#253}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#253}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#253}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#255}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#255}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#255}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#255}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#255}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#255}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#255}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#255}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#255}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#255}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#257}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#257}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#257}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#257}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#257}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#257}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#257}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#257}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#257}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#257}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#259}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#259}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#259}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#259}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#259}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#259}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#259}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#259}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#259}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#259}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#261}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#261}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#261}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#261}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#261}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#261}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#261}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#261}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#261}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#261}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#263}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#263}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#263}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#263}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#263}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#263}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#263}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#263}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#263}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#263}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#265}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#265}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#265}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#265}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#265}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#265}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#265}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#265}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#265}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#265}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#267}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#267}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#267}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#267}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#267}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#267}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#267}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#267}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#267}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#267}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#269}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#269}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#269}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#269}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#269}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#269}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#269}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#269}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#269}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#269}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#271}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#271}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#271}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#271}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#271}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#271}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#271}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#271}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#271}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#271}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#273}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#273}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#273}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#273}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#273}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#273}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#273}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#273}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#273}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#273}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#275}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#275}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#275}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#275}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#275}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#275}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#275}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#275}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#275}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#275}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#277}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#277}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#277}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#277}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#277}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#277}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#277}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#277}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#277}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#277}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#279}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#279}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#279}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#279}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#279}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#279}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#279}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#279}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#279}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#279}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#281}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#281}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#281}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#281}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#281}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#281}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#281}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#281}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#281}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#281}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#283}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#283}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#283}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#283}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#283}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#283}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#283}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#283}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#283}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#283}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#285}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#285}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#285}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#285}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#285}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#285}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#285}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#285}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#285}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#285}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#287}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#287}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#287}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#287}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#287}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#287}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#287}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#287}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#287}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#287}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#289}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#289}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#289}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#289}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U832::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#289}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#289}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#289}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#289}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#289}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#289}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#291}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#291}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#291}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#291}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#291}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#291}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#291}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#291}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#291}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#291}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#293}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#293}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#293}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#293}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#293}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#293}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#293}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#293}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#293}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#293}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#295}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#295}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#295}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#295}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#295}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#295}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#295}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#295}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#295}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#295}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#297}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#297}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#297}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#297}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#297}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#297}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#297}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#297}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#297}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#297}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#299}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#299}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#299}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#299}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#299}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#299}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#299}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#299}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#299}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#299}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#301}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#301}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#301}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#301}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#301}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#301}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#301}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#301}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#301}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#301}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#303}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#303}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#303}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#303}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#303}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#303}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#303}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#303}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#303}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#303}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#305}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#305}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#305}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#305}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#305}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#305}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#305}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#305}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#305}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#305}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#307}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#307}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#307}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#307}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#307}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#307}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#307}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#307}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#307}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#307}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#309}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#309}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#309}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#309}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#309}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#309}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#309}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#309}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#309}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#309}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#311}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#311}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#311}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#311}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#311}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#311}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#311}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#311}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#311}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#311}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#313}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#313}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#313}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#313}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#313}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#313}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#313}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#313}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#313}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#313}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#315}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#315}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#315}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#315}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#315}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#315}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#315}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#315}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#315}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#315}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#317}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#317}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#317}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#317}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#317}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#317}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#317}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#317}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#317}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#317}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#319}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#319}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#319}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#319}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#319}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#319}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#319}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#319}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#319}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#319}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#321}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#321}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#321}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#321}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#321}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#321}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#321}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#321}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#321}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#321}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#323}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#323}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#323}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#323}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#323}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#323}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#323}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#323}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#323}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#323}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#325}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#325}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#325}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#325}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#325}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#325}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#325}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#325}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#325}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#325}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#327}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#327}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#327}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#327}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#327}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#327}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#327}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#327}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#327}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#327}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#329}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#329}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#329}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#329}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#329}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#329}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#329}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#329}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#329}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#329}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#331}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#331}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#331}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#331}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#331}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#331}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#331}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#331}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#331}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#331}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#333}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#333}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#333}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#333}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#333}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#333}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#333}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#333}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#333}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#333}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#335}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#335}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#335}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#335}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#335}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#335}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#335}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#335}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#335}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#335}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#337}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#337}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#337}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#337}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#337}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#337}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#337}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#337}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#337}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#337}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#339}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#339}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#339}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#339}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#339}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#339}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#339}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#339}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#339}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#339}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#341}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#341}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#341}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#341}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U960::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#341}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#341}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#341}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#341}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#341}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#341}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#343}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#343}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#343}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#343}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#343}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#343}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#343}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#343}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#343}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#343}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#345}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#345}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#345}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#345}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#345}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#345}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#345}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#345}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#345}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#345}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#347}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#347}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#347}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#347}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#347}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#347}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#347}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#347}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#347}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#347}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#349}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#349}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#349}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#349}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#349}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#349}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#349}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#349}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#349}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#349}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#351}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#351}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#351}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#351}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#351}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#351}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#351}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#351}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#351}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#351}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#353}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#353}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#353}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#353}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#353}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#353}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#353}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#353}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#353}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#353}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#355}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#355}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#355}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#355}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#355}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#355}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#355}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#355}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#355}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#355}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#357}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#357}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#357}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#357}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#357}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#357}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#357}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#357}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#357}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#357}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#359}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#359}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#359}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#359}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#359}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#359}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#359}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#359}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#359}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#359}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#361}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#361}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#361}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#361}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#361}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#361}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#361}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#361}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#361}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#361}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#363}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#363}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#363}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#363}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#363}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#363}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#363}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#363}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#363}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#363}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#365}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#365}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#365}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#365}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#365}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#365}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#365}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#365}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#365}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#365}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#367}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#367}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#367}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#367}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#367}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#367}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#367}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#367}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#367}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#367}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#369}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#369}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#369}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#369}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#369}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#369}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#369}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#369}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#369}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#369}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#47}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#47}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#47}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#47}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U128::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U128::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#47}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#47}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#47}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#47}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#47}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#47}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#52}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#52}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#52}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#52}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U256::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#52}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#52}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#52}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#52}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#52}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#52}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#57}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#57}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#57}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#57}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U384::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#57}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#57}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#57}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#57}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#57}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#57}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#62}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#62}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#62}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#62}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U512::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#62}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#62}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#62}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#62}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#62}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#62}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#67}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#67}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#67}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#67}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U640::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#67}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#67}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#67}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#67}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#67}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#67}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#72}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#72}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#72}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#72}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U768::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#72}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#72}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#72}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#72}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#72}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#72}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#77}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#77}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#77}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#77}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U896::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#77}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#77}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#77}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#77}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#77}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#77}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#82}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#82}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#82}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#82}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1024::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#82}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#82}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#82}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#82}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#82}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#82}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#87}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#87}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#87}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#87}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1280::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1280::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#87}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#87}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#87}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#87}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#87}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#87}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#92}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#92}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#92}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#92}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1536::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1536::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#92}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#92}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#92}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#92}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#92}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#92}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#97}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#97}::{constant#1}>
impl ConcatMixed<Uint<crypto_bigint::::uint::{impl#97}::{constant#0}>> for Uint<crypto_bigint::::uint::{impl#97}::{constant#1}>
Source§type MixedOutput = Uint<crypto_bigint::::uint::U1792::{constant#0}>
type MixedOutput = Uint<crypto_bigint::::uint::U1792::{constant#0}>
Lo
and Self
.Source§fn concat_mixed(
&self,
lo: &Uint<crypto_bigint::::uint::{impl#97}::concat_mixed::{constant#0}>,
) -> <Uint<crypto_bigint::::uint::{impl#97}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#97}::{constant#0}>>>::MixedOutput
fn concat_mixed( &self, lo: &Uint<crypto_bigint::::uint::{impl#97}::concat_mixed::{constant#0}>, ) -> <Uint<crypto_bigint::::uint::{impl#97}::{constant#1}> as ConcatMixed<Uint<crypto_bigint::::uint::{impl#97}::{constant#0}>>>::MixedOutput
self
as most significant and lo
as the least significant.Source§impl<const LIMBS: usize> ConditionallySelectable for Uint<LIMBS>
impl<const LIMBS: usize> ConditionallySelectable for Uint<LIMBS>
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
self
and other
if choice == 1
; otherwise,
reassign both unto themselves. Read moreSource§impl<const LIMBS: usize> ConstantTimeEq for Uint<LIMBS>
impl<const LIMBS: usize> ConstantTimeEq for Uint<LIMBS>
Source§impl<const LIMBS: usize> ConstantTimeGreater for Uint<LIMBS>
impl<const LIMBS: usize> ConstantTimeGreater for Uint<LIMBS>
Source§impl<const LIMBS: usize> ConstantTimeLess for Uint<LIMBS>
impl<const LIMBS: usize> ConstantTimeLess for Uint<LIMBS>
Source§impl Encoding for Uint<crypto_bigint::::uint::U1024::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U1024::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1024::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1024::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U1280::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U1280::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1280::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1280::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1280::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1280::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1280::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U128::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U128::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U128::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U128::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U1536::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U1536::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1536::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1536::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U16384::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U16384::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U16384::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U16384::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U16384::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U16384::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U16384::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U1792::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U1792::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U1792::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U1792::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U192::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U192::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U192::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U192::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U2048::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U2048::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U2048::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U2048::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U256::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U256::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U256::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U256::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U3072::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U3072::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U3072::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U3072::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U320::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U320::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U320::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U320::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U320::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U320::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U320::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U32768::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U32768::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U32768::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U32768::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U32768::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U32768::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U32768::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U3584::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U3584::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U3584::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U3584::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U384::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U384::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U384::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U384::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U4096::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U4096::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U4096::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U4096::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U4224::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U4224::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U4224::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U4224::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U4224::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U4224::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U4224::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U4352::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U4352::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U4352::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U4352::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U4352::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U4352::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U4352::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U448::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U448::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U448::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U448::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U512::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U512::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U512::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U512::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U576::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U576::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U576::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U576::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U6144::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U6144::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U6144::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U6144::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U640::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U640::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U640::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U640::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U640::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U640::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U640::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U64::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U64::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U64::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U64::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U704::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U704::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U704::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U704::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U704::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U704::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U704::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U768::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U768::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U768::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U768::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U8192::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U8192::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U8192::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U8192::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U832::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U832::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U832::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U832::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U896::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U896::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U896::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U896::{constant#0}>
Source§impl Encoding for Uint<crypto_bigint::::uint::U960::{constant#0}>
impl Encoding for Uint<crypto_bigint::::uint::U960::{constant#0}>
Source§fn from_be_bytes(
bytes: <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U960::{constant#0}>
fn from_be_bytes( bytes: <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U960::{constant#0}>
Source§fn from_le_bytes(
bytes: <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr,
) -> Uint<crypto_bigint::::uint::U960::{constant#0}>
fn from_le_bytes( bytes: <Uint<crypto_bigint::::uint::U960::{constant#0}> as Encoding>::Repr, ) -> Uint<crypto_bigint::::uint::U960::{constant#0}>
Source§impl<const L: usize, const H: usize, const LIMBS: usize> From<&(Uint<L>, Uint<H>)> for Uint<LIMBS>
impl<const L: usize, const H: usize, const LIMBS: usize> From<&(Uint<L>, Uint<H>)> for Uint<LIMBS>
Source§impl<const L: usize, const H: usize, const LIMBS: usize> From<(Uint<L>, Uint<H>)> for Uint<LIMBS>
impl<const L: usize, const H: usize, const LIMBS: usize> From<(Uint<L>, Uint<H>)> for Uint<LIMBS>
Source§impl<const LIMBS: usize> Ord for Uint<LIMBS>
impl<const LIMBS: usize> Ord for Uint<LIMBS>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<const LIMBS: usize> PartialOrd for Uint<LIMBS>
impl<const LIMBS: usize> PartialOrd for Uint<LIMBS>
Source§impl<const LIMBS: usize> RandomMod for Uint<LIMBS>
impl<const LIMBS: usize> RandomMod for Uint<LIMBS>
Source§fn random_mod(
rng: &mut impl CryptoRngCore,
modulus: &NonZero<Uint<LIMBS>>,
) -> Uint<LIMBS>
fn random_mod( rng: &mut impl CryptoRngCore, modulus: &NonZero<Uint<LIMBS>>, ) -> Uint<LIMBS>
Generate a cryptographically secure random Uint
which is less than
a given modulus
.
This function uses rejection sampling, a method which produces an unbiased distribution of in-range values provided the underlying CSRNG is unbiased, but runs in variable-time.
The variable-time nature of the algorithm should not pose a security issue so long as the underlying random number generator is truly a CSRNG, where previous outputs are unrelated to subsequent outputs and do not reveal information about the RNG’s internal state.
Source§impl<const LIMBS: usize> ShlAssign<usize> for Uint<LIMBS>
impl<const LIMBS: usize> ShlAssign<usize> for Uint<LIMBS>
Source§fn shl_assign(&mut self, rhs: usize)
fn shl_assign(&mut self, rhs: usize)
NOTE: this operation is variable time with respect to rhs
ONLY.
When used with a fixed rhs
, this function is constant-time with respect
to self
.
Source§impl<const LIMBS: usize> ShrAssign<usize> for Uint<LIMBS>
impl<const LIMBS: usize> ShrAssign<usize> for Uint<LIMBS>
Source§fn shr_assign(&mut self, rhs: usize)
fn shr_assign(&mut self, rhs: usize)
>>=
operation. Read more