pub trait IdealKey<const N: usize> {
type Key;
}Expand description
Given a data type and a number, it yields the smallest unsigned
integer that’s at least N times larger.
Implemented by brute force.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".