Debug only my code

I use VSCode.
Is there an option (anywhere, in rust, in VSCode, anywhere really) that will allow me to debug just my code? That is, if I select "step into" I don't want to step into std:: or 3rd party lib. I only want to debug my code.

Thanks

I think your best bet would be to make sure you "Step Over" rather than "Step Into" any code you didn't write.

It's not always possible to step over since you may have a single line with both calls to your code and code from a library. The good news is that you can always step out when you get into a function you don't care about.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.