-
Memory and Data Race Safety
Compiler enforced data ownership and reference rules insure Memory and Data Race safety.
-
Performance
Rust compiles to native code and does not need garbage collection, so
it is as fast as C and C++. Here's a
comparison.
-
Error Handling
Any function that can fail returns a result indicating success or failure.
Code has to handle errors in well defined ways.
-
Simple Value Behavior
Rust supports value behavior without the need for program developers to define copy and move
constructors, assignment operators, and destructors. Developers need only define a single
clone operation that is called explicitly. The rest is handled by Rust's unique type
system.
-
Clever design of type system results in fewer context dependencies.
I believe Rust code describes how its programs use platform resources more accurately than other
popular languages.
-
Rust programs tend to work correctly as soon as they compile.
There are no memory bugs or data race conditions to find and fix.
-
Very Effective Tool Chain
The cargo tool creates, manages dependencies, builds, and executes programs and library tests.
-
Fairly small syntax and library footprint with excellent documentation.
Makes learning Rust relatively easy.