Hi,
I wish to use bson::Uuid
as a key in a HashMap
. Currently this is not possible because it only implements PartialEq
and not Eq
. Is there any specific reason that limits implementing Eq
for this type? uuid::Uuid
does implement Eq
so for me it would make sense if it reproduces the same interface.
Many Thanks!