this post was submitted on 26 Jun 2026
13 points (100.0% liked)

Rust

8104 readers
52 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] kubica@fedia.io 3 points 4 days ago

I think one of the tools that really made a change for me was the rust-analyzer. It was a big difference knowing which var types rust really though I had on a variable or the type that some method is actually outputting, instead of my own (wrong) guesses.

Edit: Also, another example is knowing how many levels of borrowing I had after a method. Those details help understand better.