pub trait KeyTraits:
Eq
+ Clone
+ Bucketize
+ Debug
+ 'static { }
Expand description
Collects the traits a Key must implement, any user defined Key type must implement this trait and any traits it derives from. The ‘Debug’ trait is only required when the feature ‘logging’ is enabled.
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.