1.1 Why Rust?

Rust is a modern programming language that uniquely combines high performance with safety. Although concepts like ownership and borrowing can initially seem challenging, they enable developers to write efficient and reliable code. Rust’s syntax may appear unconventional to those accustomed to other languages, yet it offers powerful abstractions that facilitate the creation of robust software.

So why has Rust gained popularity despite its complexities?

Rust aims to balance the performance benefits of low-level systems programming languages with the safety, reliability, and user-friendliness of high-level languages. While low-level languages like C and C++ provide high performance with minimal resource usage, they can be prone to errors that compromise reliability. High-level languages such as Python, Kotlin, Julia, JavaScript, C#, and Java are often easier to learn and use but typically rely on garbage collection and large runtime environments, making them less suitable for certain systems programming tasks.

Languages like Rust, Go, Swift, Zig, Nim, Crystal, and V seek to bridge this gap. Rust has been particularly successful in this endeavor, as evidenced by its growing adoption.

As a systems programming language, Rust enforces memory safety through its ownership model and borrow checker, preventing issues such as null pointer dereferencing, use-after-free errors, and buffer overflows—all without using a garbage collector. Rust avoids hidden, expensive operations like implicit type conversions or unnecessary heap allocations, giving developers precise control over performance. Copying large data structures is typically avoided by using references or move semantics to transfer ownership. When copying is necessary, developers must explicitly request it using methods like clone(). Despite these performance-focused constraints, Rust provides convenient high-level features such as iterators and closures, offering a user-friendly experience while retaining high efficiency.

Rust’s ownership model also guarantees fearless concurrency by preventing data races at compile time. This simplifies the creation of concurrent programs compared to languages that might detect such errors only at runtime—or not at all.

Although Rust does not employ a traditional class-based object-oriented programming (OOP) approach, it incorporates OOP concepts via traits and structs. These features support polymorphism and code reuse in a flexible manner. Instead of exceptions, Rust uses Result and Option types for error handling, encouraging explicit handling and helping to avoid unexpected runtime failures.

Rust’s development began in 2006 with Graydon Hoare, initially supported by volunteers and later sponsored by Mozilla. The first stable version, Rust 1.0, was released in 2015. By version 1.84 and the Rust 2024 edition (stabilized in late 2024), Rust had continued to evolve while maintaining backward compatibility. Today, Rust benefits from a large, active developer community. After Mozilla reduced its direct involvement, the Rust community formed the Rust Foundation, supported by major companies like AWS, Google, Microsoft, and Huawei, among others, to ensure the language’s continued growth and sustainability. Rust is free, open-source software licensed under the permissive MIT and Apache 2.0 terms for its compiler, standard library, and most external packages (crates).

Rust’s community-driven development process relies on RFCs (Requests for Comments) to propose and discuss new features. This open, collaborative approach has fueled Rust’s rapid evolution and fostered a rich ecosystem of libraries and tools. The community’s emphasis on quality and cooperation has turned Rust from merely a programming language into a movement advocating for safer, more efficient software development practices.

Well-known companies such as Meta (Facebook), Dropbox, Amazon, and Discord utilize Rust for various projects. Dropbox, for instance, employs Rust to optimize its file storage infrastructure, while Discord leverages it for high-performance networking components. Rust is widely used in system programming, embedded systems, WebAssembly development, and for building applications on PCs (Windows, Linux, macOS) and mobile platforms. A significant milestone is Rust’s integration into the Linux kernel—the first time an additional language has been adopted alongside C for kernel development. Rust is also gaining momentum in the blockchain industry.

Rust’s ecosystem is mature and well-supported. It features a powerful compiler (rustc), the modern Cargo build system and package manager, and Crates.io, an extensive repository of open-source libraries. Tools like rustfmt for automated code formatting and clippy for static analysis (linting) help maintain code quality and consistency. The ecosystem includes modern GUI frameworks like EGUI and Xilem, game engines such as Bevy, and even entire operating systems like Redox-OS, all developed in Rust.

As a statically typed, compiled language, Rust historically might not have seemed the primary choice for rapid prototyping, where dynamically typed, interpreted languages (e.g., Python or JavaScript) often excel. However, Rust’s continually improving compile times—aided by incremental compilation and build artifact caching—combined with its robust type system and strong IDE support, have made prototyping in Rust increasingly efficient. Many developers now choose Rust for projects from the outset, valuing its performance, safety guarantees, and the smoother transition from prototype to production-ready code.

Since this book assumes familiarity with the motivations for using Rust, we will not delve further into analyzing its pros and cons. Instead, we will focus on its core features and its established ecosystem. The LLVM-based compiler (rustc), the Cargo package manager, Crates.io, and Rust’s vibrant community are essential factors contributing to its growing importance.