You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The KeyDeserialize trait which is required for a type that would like to be a key for a Map is private in the cw_storage_plus::de module. This makes implementing custom map keys and functions that are generic over the map key type not possible.
For example, a generic function which lists all of the keys in a Map can't be implemented because the trait is private:
The
KeyDeserialize
trait which is required for a type that would like to be a key for aMap
is private in thecw_storage_plus::de
module. This makes implementing custom map keys and functions that are generic over the map key type not possible.For example, a generic function which lists all of the keys in a
Map
can't be implemented because the trait is private:Would be really cool to be able to do this. :)
The text was updated successfully, but these errors were encountered: