I am not hating on Rust. I am honestly looking for reasons why I should learn and use Rust. Currently, I am a Go developer. I haven’t touched any other language for years, except JavaScript for occasional front end work and other languages for OSS contributions.

After working with almost every mainstream language over the years and flitting between them on a whim, I have fallen in love with Go. It feels like ‘home’ to me - it’s comfortable and I enjoy working with it and I have little motivation to use anything else. I rage every time I get stuck working with JavaScript because dependency management is pure hell when dealing with the intersection of packages and browsers - by contrast, dependency management is a breeze with Go modules. I’ll grant that it can suck when using private packages, but I everything I work on is open.

Rust is intriguing. Controlling the lifecycle of variables in detail appeals to me. I don’t mind garbage collectors but Rust’s approach seems far more elegant. The main issue for me is the syntax, specifically generic types, traits, and lifetimes. It looks just about as bad as C++'s template system, minus the latter’s awful compiler errors. After working almost exclusively with Go for years, reading it seems unnecessarily demanding. And IMO the only thing more important than readability is whether it works.

Why should I learn and use rust?

P.S.: I don’t care about political stuff like “Because Google sucks”. I see no evidence that Google is controlling the project. And I’m not interested in “Because Go sucks” opinions - it should be obvious that I disagree.

  • TechNom (nobody)@programming.dev
    ·
    10 months ago

    The main issue for me is the syntax, specifically generic types, traits, and lifetimes.

    After working almost exclusively with Go for years, reading it seems unnecessarily demanding.

    Like someone else said, this is a complex subject to answer. The syntax looks perplexing and frustrating, until it doesn't. These days, Rust syntax is nowhere in my thought while coding - it like when you drive, you are thinking about where you want to go rather than about manipulating the controls.

    Why should I learn and use rust?

    Rust''s rules are about enforcing memory safety. But it also ends up forcing you to write better programs than what you imagined you could. It's hard to describe that feeling - you have to experience it. That alone is a good reason to learn it - even if you end up not using it in the future.

    Rust's unique design also leads to many design patterns not normally seen in most other languages. That's also worth exploring.

    I have fallen in love with Go. It feels like ‘home’ to me

    That's a perfectly good thing. It's hard to find that sweet spot. However, don't let that stop you from exploring the alternatives. You might find ideas you could use in Go.

  • L0rdMathias@sh.itjust.works
    ·
    10 months ago

    You should learn Rust because you think that the language is intriguing and that controlling the lifespan of a variable is an interesting feature.

    • Ethan@programming.dev
      hexagon
      ·
      10 months ago

      I’d have to be living under a particularly large rock to be unaware of that. “It’s memory safe” isn’t that big of a deal to me. Even building concurrent systems, memory safety has never been a significant issue for me with Go.

      • Lmaydev@programming.dev
        ·
        10 months ago

        Go is memory safe due to its garbage collection. Which adds a decent overhead generally.

        Rusts memory safety is enforced at compile time and therefore has zero cost at runtime.

        For a system level language this can be really important.