How do I create a static mutable hashmap? I am ok with unsafe code.
The normal static does not allow globals with constructors.
As an example, I want what is at https://gist.github.com/Kimundi/8782487 but HASHMAP to be mutable.
I understand that global shared mutable state is not what very rust-ish but I just want to know if such a thing is possible.