I have a Python code that makes a call to a Rust code inside it. I'm launching the Python debugger through Visual Studio Code and stepping into the Python function. However, I couldn't step into the Rust code to debug. Is there a way to debug the Rust code too?
My launch.json
is as following:
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"stopOnEntry": true,
"justMyCode": false,
}
]
}