I'm using Visual Studio Code and the LLDB Debugger (CodeLLDB vadimcn.vscode-lldb) for programming in Rust. When using Vec<u64> I can see all values in a list (until a limit of > 10000):
When using a vector of tuples (Vec<(u64, u64)>), I can't see inside the vector.
When digging a bit deeper, I only find a pointer which points to the first entry in the vector. I'm not able to get to another position in my vector.
How do I get the content of the whole vector? Maybe with some watch expression?
I'm using Rust 1.44.1


This issue has been addressed in the latest version of
CodeLLDB v1.7.0rust :
1.60.0 (7737e0b5c 2022-04-04)vscode:
v1.67.0\Code used
code lldb debug view
Know it's not recommended to post images as part of answers but it's more appropriate here and required to answer the image.