☰
UintTryTo
Implementors
In ruint
?
Trait
ruint
::
UintTryTo
source
·
[
−
]
pub trait UintTryTo<T>:
Sized
{ }
Expand description
⚠️ Workaround for
Rust issue #50133
. Use
TryFrom
instead.
Implementors
§
source
§
impl<const BITS:
usize
, const LIMBS:
usize
, T>
UintTryTo
<T> for
Uint
<BITS, LIMBS>
where T: for<'a>
TryFrom
<
&'a Self
, Error =
FromUintError
<T>>,
source
§
impl<const BITS:
usize
, const LIMBS:
usize
, const BITS_DST:
usize
, const LIMBS_DST:
usize
>
UintTryTo
<
Uint
<BITS_DST, LIMBS_DST>> for
Uint
<BITS, LIMBS>