I'm learning Rust and I'm using VSCode on Linux. I have this project:
.
├── src
│ ├── 01_hello_world
│ │ ├── comm.rs
│ │ └── mod.rs
│ └── main.rs
├── target
├── Cargo.lock
└── Cargo.toml
Inlay hints and hover information work fine on main.rs but not for the other files, why? The same occurs if I have this structure
...
│ ├── 01_hello_world
│ │ ├── comments
│ │ │ └── mod.rs
│ │ └── mod.rs
...