Ask HN: Are Rust migrations delivering any benefits?
There seems to be a growing trend of rewriting everything to Rust. The common argument seems to be surrounding safety and better concurrency.
I wanted to understand if I am the only one that finds the language hard to understand (primarily it's time system). Am I missing out on something that everyone including junior engineers seems to have figured out.
4 comments
[ 4.5 ms ] story [ 15.1 ms ] threadBut ultimately you can use any language you want and you don’t need to do anything just because other people are doing it. Do what makes sense for your project.
With C or C++, implementing a simple tree structure is straightforward, but in Rust, even writing a linked list is painful. The ecosystem is also fragmented. Most people use Tokio, and while AI can solve a lot of problems, AI often generates bad code just to work around the Borrow Checker.
That said, the UX experience is good—but the developer experience is terrible, and there's so much to learn. Things that would just work in other languages require explicit handling in Rust. A lot of people like Rust's technical purity, but I don't like it because of the terrible experience that comes with it.
That said, if I had to rewrite a large project from scratch, I think I would choose Rust. The benefits are that big.
Personally, I think it has both pros and cons