pub trait Key:
Copy
+ Send
+ Sync
+ Ord
+ Debug
+ 'static {
// Required method
fn as_f64(self) -> f64;
}Expand description
Key trait for supported types 支持的键类型约束
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".