pub trait Key:
Copy
+ Default
+ Ord
+ 'static {
// Required methods
fn split<C: Chunk>(self) -> (Self, u32);
fn merge<C: Chunk>(self, bit: u32) -> Self;
}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.