pub trait GetByKey<Key, Value> { fn get(k: &Key) -> Value; }
A trait for querying a value by a key.
Return the value.