I have a Vec of next Node Structs in Rust. When debugging in VSCode with CodeLLDB and I look into the variable I see:
Local
node: {next(130): vec![{...}, {...} ...
next(130): vec![{...}, {...}, ...
: <error: No value>
: <error: No value>
: <error: No value>
...
The data is valid and the code runs fine, so why can't I see into the Node structs in the Vec? What am I doing wrong? (This is on an M1 MacBook Air, if that matters.)