Why Not Rust?

Ive recently read an article criticizing Rust, and, while it made a bunch of good points, I didnt enjoy it it was an easy to argue with piece. In general, I feel that I cant recommend an article criticizing Rust. This is a shame confronting drawbacks is important, and debunking low effort/miss informed attempts at critique sadly inoculates against actually good arguments.

So, heres my attempt to argue against Rust:

Not All Programming is Systems Programming

Rust is a systems programming language. It offers precise control over data layout and runtime behavior of the code, granting you maximal performance and flexibility. Unlike other systems programming languages, it also provides memory safety buggy programs terminate in a well-defined manner, instead of unleashing (potentially security-sensitive) undefined behavior.

However, in many (most) cases, one doesnt need ultimate performance or control over hardware resources. For these situations, modern managed languages like Kotlin or Go offer decent speed, enviable time to performance, and are memory safe by virtue of using a garbage collector for dynamic memory management.

Complexity

Programmers time is valuable, and, if you pick Rust, expect to spend some of it on learning the ropes. Rust community poured a lot of time into creating high-quality teaching materials, but the Rust language is big. Even if a Rust implementation would provide value for you, you might not have resources to invest into growing the language expertise.

Rusts price for improved control is the curse of choice:

struct Foo     { bar: Bar         }
struct Foo<'a> { bar: &'a Bar     }
struct Foo<'a> { bar: &'a mut Bar }
struct Foo     { bar: Box<Bar>    }
struct Foo     { bar: Rc<Bar>     }
struct Foo     { bar: Arc<Bar>    }

In Kotlin, you write class Foo(val bar: Bar), and proceed with solving your business problem. In Rust, there are choices to be made, some important enough to have dedicated syntax.

All this complexity is there for a reason we dont know how to create a simpler memory safe low-level language. But not every task requires a low-level language to solve it.

See also Why C++ Sails When the Vasa Sank.

Compile Times

Compile times are a multiplier for everything. A program written in a slower to run but faster to compile programming language can be faster to run because the programmer will have more time to optimize!

Rust intentionally picked slow compilers in the generics dilemma. This is not necessarily the end of the world (the resulting runtime performance improvements are real), but it does mean that youll have to fight tooth and nail for reasonable build times in larger projects.

rustc implements what is probably the most advanced incremental compilation algorithm in production compilers, but this feels a bit like fighting with language compilation model.

Unlike C++, Rust build is not embarrassingly parallel; the amount of parallelism is limited by length of the critical path in the dependency graph. If you have 40+ cores to compile, this shows.

Rust also lacks an analog for the pimpl idiom, which means that changing a crate requires recompiling (and not just relinking) all of its reverse dependencies.

Maturity

Five years old, Rust is definitely a young language. Even though its future looks bright, I will bet more money on C will be around in ten years than on Rust will be around in ten years(See Lindy Effect). If you are writing software to last decades, you should seriously consider risks associated with picking new technologies. (But keep in mind that picking Java over Cobol for banking software in 90s retrospectively turned out to be the right choice).

Theres only one complete implementation of Rust the rustc compiler. The most advanced alternative implementation, mrustc, purposefully omits many static safety checks. rustc at the moment supports only a single production-ready backend LLVM. Hence, its support for CPU architectures is narrower than that of C, which has GCC implementation as well as a number of vendor specific proprietary compilers.

Finally, Rust lacks an official specification. The reference is a work in progress, and does not yet document all the fine implementation details.

Alternatives

There are other languages besides Rust in systems programming space, notably, C, C++, and Ada.

Modern C++ provides tools and guidelines for improving safety. Theres even a proposal for a Rust-like lifetimes mechanism! Unlike Rust, using these tools does not guarantee the absence of memory safety issues. Modern C++ is safer, Rust is safe. However, if you already maintain a large body of C++ code, it makes sense to check if following best practices and using sanitizers helps with security issues. This is hard, but clearly is easier than rewriting in another language!

If you use C, you can use formal methods to prove the absence of undefined behaviors, or just exhaustively test everything.

Ada is memory safe if you dont use dynamic memory (never call free).

Rust is an interesting point on the cost/safety curve, but is far from the only one!

Tooling

Rust tooling is a bit of a hit and miss. The baseline tooling, the compiler and the build system (cargo), are often cited as best in class.

But, for example, some runtime-related tools (most notably, heap profiling) are just absent its hard to reflect on the runtime of the program if theres no runtime! Additionally, while IDE support is decent, it is nowhere near the Java-level of reliability. Automated complex refactors of multi-million line programs are not possible in Rust today.

Integration

Whatever the Rust promise is, its a fact of life that todays systems programming world speaks C, and is inhabited by C and C++. Rust intentionally doesnt try to mimic these languages it doesnt use C++-style classes or C ABI.

That means that integration between the worlds needs explicit bridges. These are not seamless. They are unsafe, not always completely zero-cost and need to be synchronized between the languages. While the general promise of piece-wise integration holds up and the tooling catches up, there is accidental complexity along the way.

One specific gotcha is that Cargos opinionated world view (which is a blessing for pure Rust projects) might make it harder to integrate with a bigger build system.

Performance

Using LLVM is not a universal solution to all performance problems. While I am not aware of benchmarks comparing performance of C++ and Rust at scale, its not to hard to come up with a list of cases where Rust leaves some performance on the table relative to C++.

The biggest one is probably the fact that Rusts move semantics is based on values (memcpy at the machine code level). In contrast, C++ semantics uses special references you can steal data from (pointers at the machine code level). In theory, compiler should be able to see through chain of copies; in practice it often doesnt: #57077. A related problem is the absence of placement new Rust sometimes need to copy bytes to/from the stack, while C++ can construct the thing in place.

Somewhat amusingly, Rusts default ABI (which is not stable, to make it as efficient as possible) is sometimes worse than that of C: #26494.

Finally, while in theory Rust code should be more efficient due to the significantly richer aliasing information, enabling aliasing-related optimizations triggers LLVM bugs and miscompilations: #54878.

But, to reiterate, these are cherry-picked examples, sometimes the field is tilted the other way. For example, std::unique_ptr has a performance problem which Rusts Box lacks.

A potentially bigger issue is that Rust, with its definition time checked generics, is less expressive than C++. So, some C++ template tricks for high performance are not expressible in Rust using a nice syntax.

Meaning of Unsafe

An idea which is even more core to Rust than ownership & borrowing is perhaps that of unsafe boundary. That, by delineating all dangerous operations behind unsafe blocks and functions and insisting on providing a safe higher-level interface to them, it is possible to create a system which is both

  1. sound (non-unsafe code cant cause undefined behavior),
  2. and modular (different unsafe blocks can be checked separately).

Its pretty clear that the promise works out in practice: fuzzing Rust code unearths panics, not buffer overruns.

But the theoretical outlook is not as rosy.

First, theres no definition of Rust memory model, so it is impossible to formally check if a given unsafe block is valid or not. Theres informal definition of things rustc does or might rely on and in in-progress runtime verifier, but the actual model is in flux. So there might be some unsafe code somewhere which works OK in practice today, might be declared invalid tomorrow, and broken by a new compiler optimization next year.

Second, theres also an observation that unsafe blocks are not, in fact, modular. Sufficiently powerful unsafe blocks can, in effect, extend the language. Two such extensions might be fine in isolation, but lead to undefined behavior if used simultaneously: Observational equivalence and unsafe code.

Finally, there are outright bugs in the compiler.


Here are some thing I have deliberately omitted from the list:

Discussion on /r/rust.