I'm using current nightly channel of Rust and LLDB for debugging. I've tried debugging with VS Code and CLion and I've tried LLDB and GDB. But all combinations fail to display the contents of HashMaps.
Only solution is to print the contens to stdout.
I've HashMaps like:
HashMap<String, FooStruct>
HashMap<u64, Vec<(String, usize)>>
Is it a known bug, or is there any solution available for this problem?