pub trait IntoU128Lossywhere
Self: Sealed,{
// Required method
fn into_u128_lossy(self) -> u128;
}
Expand description
Trait for number types that can be converted into u128
, potentially lossily
Required Methods§
Sourcefn into_u128_lossy(self) -> u128
fn into_u128_lossy(self) -> u128
Convert into a u128
value
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.