Suppose I want to write a HashMap wrapper. My attempt:
struct Wrapper<K,V> where HashMap<K,V>: Default{
value: HashMap<K,V>
}
I want K,V to implicitly have whatever bounds that make HashMap<K,V> valid. Is there a trait that is better than Default that better communicates this intention? Something like HashMap<K,V>: True ?