pub trait Key { // Required method fn find(&self, lookup: &KeyLookup) -> Result<usize, Traversal>; }
Convert a &str key into a node index on a KeyLookup
&str
KeyLookup
Convert the key self to a usize index
self
usize