Issues with HashMap and Struct Key Retrieval
How does HashMap hash its key? I thought I needed to provide some equivalence/hashing thing for my key type, cause the key could be made of any type, but it's not needed. I'm trying to create a map using a struct as key (I need a two values key) and while getting from the map it's not retrieving anything despite using the same values for the struct as key. What am I missing?
