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