pub trait KeyValueEntry<'a> { type Key; type Value; }
KeyValueEntry establishes a common interface for entries within a key-value store.
KeyValueEntry