pub trait Key {
// Required method
fn find<M: KeyLookup + ?Sized>(&self) -> Option<usize>;
}Expand description
Capability to convert a key into a node index for a given M: TreeKey
Required Methods§
Object Safety§
This trait is not object safe.