pub trait ToU128 {
// Required method
fn to_u128(self) -> u128;
}Expand description
Infallibly convert usize to u128.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".