pub trait IntoU64Lossywhere
Self: Sealed,{
// Required method
fn into_u64_lossy(self) -> u64;
}
Expand description
Trait for number types that can be converted into u64
, potentially lossily
Required Methods§
Sourcefn into_u64_lossy(self) -> u64
fn into_u64_lossy(self) -> u64
Convert into a u64
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.