pub trait Key<const TABLE_MIN_VALUE: i128>:
PrimInt
+ Eq
+ Hash
+ TryFrom<i128>
+ Debug
+ 'static
+ Sealed<TABLE_MIN_VALUE> {
// Required method
fn key_index(&self) -> usize;
}Expand description
Required Methods§
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.