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


