Modern Features

    • Enums and pattern matching.
    • Generics.
    • No overhead FFI.

    • Great compiler errors.
    • Built-in dependency manager.
    • Built-in support for testing.
    • Excellent Language Server Protocol support.

    Key points:

    • Zero-cost abstractions, similar to C++, means that you don’t have to ‘pay’ for higher-level programming constructs with memory or CPU. For example, writing a loop using should result in roughly the same low level instructions as using the construct.

    • Remind people to read the errors — many developers have gotten used to ignore lengthy compiler output. The Rust compiler is significantly more talkative than other compilers. It will often provide you with actionable feedback, ready to copy-paste into your code.

    • The Rust standard library is small compared to languages like Java, Python, and Go. Rust does not come with several things you might consider standard and essential:

      • a random number generator, but see rand.
      • support for SSL or TLS, but see .
      • support for JSON, but see serde_json. The reasoning behind this is that functionality in the standard library cannot go away, so it has to be very stable. For the examples above, the Rust community is still working on finding the best solution — and perhaps there isn’t a single “best solution” for some of these things.

      Discovering good third-party crates can be a problem. Sites like help with this by letting you compare health metrics for crates to find a good and trusted one.