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.

  • L0rdMathias@sh.itjust.works
    link
    fedilink
    arrow-up
    36
    Ā·
    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.

    • tatterdemalion@programming.dev
      link
      fedilink
      arrow-up
      2
      Ā·
      10 months ago

      Not even ā€œcontrolling the lifespanā€ but, ā€œbeing whipped by your machine when you are not careful with the lifetimes.ā€

  • asdfasdfasdf@lemmy.world
    link
    fedilink
    arrow-up
    27
    arrow-down
    1
    Ā·
    10 months ago

    Iā€™ve used Rust professionally for five years now, and it is too hard to give a full answer in any single comment. There are so many reasons. You are right, it is a lot more elegant. You can do things with its type system which you canā€™t in any other mainstream language, because of ownership. Itā€™s really a life changing experience, so Iā€™d suggest you just try it out, build a project in it, and see what itā€™s like. You wonā€™t regret it.

    I strongly disagree about generics / syntax. IMO theyā€™re fine and youā€™ll learn to love them.

    The high level answer Iā€™ll give is that Rust is a language that is designed from the ground up to not make many sacrifices. You can use it for systems programming where you canā€™t use a garbage collector, or for high level stuff like an API server. It feels high level while also being as low level as you need it to. Its errors are absolutely fantastic. Same with the tooling and package manager.

    You should really just see for yourself.

    • TechNom (nobody)@programming.dev
      link
      fedilink
      English
      arrow-up
      2
      Ā·
      10 months ago

      I strongly disagree about generics / syntax. IMO theyā€™re fine and youā€™ll learn to love them.

      True! Rustā€™s design is very orthogonal. The generics, lifetimes and other similar features work very well together.

  • TechNom (nobody)@programming.dev
    link
    fedilink
    English
    arrow-up
    19
    Ā·
    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.

    • Pyro@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      Ā·
      10 months ago

      Rustā€™s unique design also leads to many design patterns not normally seen in most other languages.

      Iā€™ve heard quite a few people talk about how good they realised Options were, and that they now try to use that same pattern in other languages like Python. It really does teach you new tricks!

      • TechNom (nobody)@programming.dev
        link
        fedilink
        English
        arrow-up
        2
        Ā·
        10 months ago

        I donā€™t know how useful Options are in Python, with its duck typing. Python had something similar to Option::None all along - None. Itā€™s possible to use None in Python is very idiomatic and surprising ways. Rustā€™s Some and None are tagged unions. And Rust forces you to address them - unlike Python.

        • aes@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          Ā·
          10 months ago

          Well, with the newer optional typing, it became def foo(name: Optional[str]) -> Optional[str]: ... and now def foo(name: str | None) -> str | None: ... (No need to import Optional) Itā€™s quite nice.

          As for Rust, recall that Result is also a very similar union type. I think a lot of the aversions people have had to static typing have mostly just been about poor expressiveness in clunky type systems.

          • TechNom (nobody)@programming.dev
            link
            fedilink
            English
            arrow-up
            1
            Ā·
            10 months ago

            I have been programming in Python for nearly two decades now. This is the first Iā€™m hearing about the Optional improvements to Pythonā€™s type hints/annotations. Thanks a lot for this. Iā€™m going to take a re-look into type hints.

            As for Rust, recall that Result is also a very similar union type.

            Iā€™m aware that Rust enums, including Result, are tagged unions. However, my understanding is that itā€™s not like that in Python. Pythonā€™s duck typing is enabled by typing the values, rather than the variables. A variable can point to a value of any type. Am I getting this wrong? Or is Optional different somehow?

  • Black616Angel@feddit.de
    link
    fedilink
    arrow-up
    16
    arrow-down
    1
    Ā·
    10 months ago

    Go is a great language. I used it a few times when dealing with bugs in open source programs. And though I never used it besides that, I could spot and fix these easy issues fast.

    Rust is not like that. The syntax is a little harder to read and a lot of widely used libraries use complex macros to ease their users lives.

    But:
    I cannot count the times rust has saved my ass.

    Examples:
    Sqlx checks my sql files against a local test-db and always errors, when my scripts miss parameters after changing the sql file.
    I have to use a complicated mess of an API at work to get the data I need and I now use a 50-60 element enum that tells me exactly, what I got back from the API-calls.

  • fubo@lemmy.world
    link
    fedilink
    arrow-up
    11
    arrow-down
    2
    Ā·
    10 months ago

    When I write code, itā€™s typically in Go or Python.

    The reason Iā€™m curious to learn Rust is specifically to contribute to existing projects that are written in Rust.

    If youā€™re interested in working on Lemmy code, for example, youā€™ve gotta learn some Rust to do it.

  • TehPers@beehaw.org
    link
    fedilink
    English
    arrow-up
    8
    Ā·
    10 months ago

    It looks just about as bad as C++'s template system, minus the latterā€™s awful compiler errors.

    Iā€™d say theyā€™re incomparable. Oneā€™s a Turing-complete programming language, the other is not much more powerful than generics in a language like C#. Thatā€™s not to say that your impression is incorrect - both are significantly more complex than what Go had for the longest time (no generics), and likely more complex than what Go has now (though I havenā€™t looked much into Goā€™s new generics system to be honest).

    If youā€™re looking for a reason to use Rust, I recommend picking it up and doing some projects in it. There are many, many reasons why one would choose Rust for a project (security, correctness, needs to be low level, preference, etc) and many documented scenarios where companies have found switching to Rust to be beneficial to them, but at the end of the day, only you know what your requirements and preferences are.

    It seems like you prefer highly readable code. This is a pretty subjective thing though, and you may find that Go is more readable to you than any other language. I would disagree, but again, itā€™s a matter of preference. For some, C++ is the language they find most readable. Regardless, the only way to know if youā€™ll like it and want to use it is for you to pick it up and use it, and develop your opinions based on experience. If you find that spending time learning it will be a waste after trying it out for a little bit, then you have your answer.

  • beardedmoose@lemmy.world
    link
    fedilink
    English
    arrow-up
    10
    arrow-down
    3
    Ā·
    10 months ago

    Every language is just a tool for the job. From what I understand Go is great for multithreaded web or backend applications. Now if you were a game developer you would most likely not be using Go as it is not industry standard and the support just isnā€™t there. Rust also intrigued me but as my current job is windows only I mostly write code in C# or Powershell.

    What I do like about Rust are things like exhaustive matching and memory safety. I dislike cargo for the same reason I donā€™t like other languages with package management, supply chain security risks.

    Pick the best tool for the job and use whatever language you enjoy the most.

  • solrize@lemmy.world
    link
    fedilink
    arrow-up
    7
    Ā·
    10 months ago

    In purely practical terms, Rust gives more precise resource control (deterministic memory management instead of garbage collection). In language geek terms, Rust has a more precise type system that lets you capture and enforce program invariants at compile time, in ways that Go doesnā€™t. That makes refactoring more reliable among other things. Is it worth it? Thatā€™s a variant of the age old debate between static and dynamic type systems.

    I would say language theory is an important branch of CS, that anyone trying to be a strong programmer should know something about, just like they should know how the quicksort algorithm works or that the halting problem is undecidable. If Rust isnā€™t to your fancy, you might try Haskell, which has a similar (maybe even fancier) type system, but is garbage collected and has a different execution model. Try learnyouahaskell.com for a good tutorial.

    Disclosure: I use Haskell but for now havenā€™t yet used Rust. Rust is interesting, I just havenā€™t gotten to it yet. I do like Ada.

    • Ethan@programming.devOP
      link
      fedilink
      English
      arrow-up
      2
      Ā·
      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
        link
        fedilink
        arrow-up
        1
        Ā·
        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.

        • Ethan@programming.devOP
          link
          fedilink
          English
          arrow-up
          1
          Ā·
          10 months ago

          In my book, ā€œmemory safetyā€ also means avoiding data races. AFAIK Rust prevents most or all races by enforcing ownership and lifetime of pointers.

  • r1veRRR@feddit.de
    link
    fedilink
    arrow-up
    3
    Ā·
    10 months ago

    Ironically, I learned Rust first, and later looked at Go. I found a lot of the syntax needlessly ā€œdifferentā€. That being said, itā€™s still a decent language. Point being, a lot of the weirdness subsides once you understand why itā€™s there.

    Personally, I donā€™t actually care about the lifecycle and memory management stuff. What I like about Rust is:

    • An enforced error type that is very convenient to use with the ? operator. No more err != nil spam, but same amount of safety
    • ADTs with a host of wonderful features, like exhaustive match statements. Go enums are horrendously basic, letā€™s be honest
    • NO NIL!! Non existence is expressed with an Option type that, like the error type, comes with many conveniences
    • Generics from the start, meaning you donā€™t have older code that throws away type safety anywhere
    • Traits/Interfaces can be implemented for foreign/external types and types can implement external interfaces (duh)
    • Great tooling, good formatting tools, good LSP, that kind of stuff. Golang has that too

    Why learn Rust? For the same reason everyone should learn different languages. To learn new concepts and see new perspectives on old problems. Itā€™ll make you a better developer even in your previous languages.

  • fbmac@lemmy.fbmac.net
    link
    fedilink
    arrow-up
    3
    Ā·
    10 months ago

    the main appeal for rust IMO are raw performance and lower memory consumption. say you want to run a lot of stuff in a small vps

    the longer compile times and ā€œfighting the borrow checkerā€ are itā€™s price

  • ArtemZ@nowoke.social
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    Ā·
    10 months ago

    There are no reasons to learn it apart from getting familiar with some of the concepts in it or working on a rust project.