# Rust (programming language)

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Rust_(programming_language)
> Markdown URL: https://mediated.wiki/source/Rust_(programming_language).md
> Source: https://en.wikipedia.org/wiki/Rust_(programming_language)
> Source revision: 1354761323
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

General-purpose programming language

Rust Paradigms Concurrent functional generic imperative structured Developer The Rust Team First appeared January 19, 2012; 14 years ago (2012-01-19) Stable release 1.96[1] / May 28, 2026; 29 days ago (May 28, 2026) Typing discipline Affine inferred nominal static strong Implementation language OCaml (2006–2011) Rust (2012–present) Platform Cross-platform[note 1] OS Cross-platform[note 2] License MIT, Apache 2.0[note 3] Filename extensions .rs, .rlib Website rust-lang.org Influenced by Alef BETA CLU C# C++ Cyclone Elm Erlang Haskell Hermes Limbo Mesa Napier Newsqueak NIL[note 4] OCaml Ruby Sather Scheme Standard ML Swift[7][8] Influenced Idris[9] PHP[10][11][12][13] Project Verona[14] SPARK[15] Swift[16] V[17] Zig[18] Gleam[19]

**Rust** is a [general-purpose](/source/General-purpose_programming_language) [programming language](/source/Programming_language) which emphasizes [performance](/source/Computer_performance), [type safety](/source/Type_safety), [concurrency](/source/Concurrency_(computer_science)), and [memory safety](/source/Memory_safety).

Rust supports multiple [programming paradigms](/source/Programming_paradigm). It was influenced by ideas from [functional programming](/source/Functional_programming), including [immutability](/source/Immutability), [higher-order functions](/source/Higher-order_function), [algebraic data types](/source/Algebraic_data_type), and [pattern matching](/source/Pattern_matching). It also supports [object-oriented programming](/source/Object-oriented_programming) via structs, [enums](/source/Union_type), traits, and methods. Rust enforces memory safety (i.e., that all [references](/source/Reference_(computer_science)) point to valid memory) without a conventional [garbage collector](/source/Garbage_collection_(computer_science)); instead, memory safety errors and [data races](/source/Data_race) are prevented by the "borrow checker", which tracks the [object lifetime](/source/Object_lifetime) of references [at compile time](/source/Compiler).

Software developer Graydon Hoare created Rust in 2006 while working at [Mozilla](/source/Mozilla), which officially sponsored the project in 2009. The first stable release, Rust 1.0, was published in May 2015. Following a layoff of Mozilla employees in August 2020, four other companies joined Mozilla in sponsoring Rust through the creation of the [Rust Foundation](#Rust_Foundation) in February 2021.

Rust has been adopted by many software projects, especially [web services](/source/Web_service) and [system software](/source/System_software). It has been studied academically and has a growing community of developers.

## History

### 2006–2009: Early years

Mozilla Foundation headquarters, 650 Castro Street in [Mountain View, California](/source/Mountain_View%2C_California), June 2009

Rust began as a personal project by [Mozilla](/source/Mozilla) employee Graydon Hoare in 2006. According to *MIT Technology Review*, he started the project due to his frustration with a broken elevator in his apartment building whose software had crashed,[20] and named the language after the [group of fungi of the same name](/source/Rust_(fungus)) that is "over-engineered for survival".[20] During the time period between 2006 and 2009, Rust was not publicized to others at Mozilla and was written in Hoare's free time;[21]: 7:50 Hoare began speaking about the language around 2009 after a small group at Mozilla became interested in the project.[22] Hoare cited languages from the 1970s, 1980s, and 1990s as influences — including [CLU](/source/CLU_(programming_language)), [BETA](/source/BETA_(programming_language)), [Mesa](/source/Mesa_(programming_language)), NIL,[note 4] [Erlang](/source/Erlang_(programming_language)), [Newsqueak](/source/Newsqueak), [Napier](/source/Napier88), [Hermes](/source/Hermes_(programming_language)), [Sather](/source/Sather), [Alef](/source/Alef_(programming_language)), and [Limbo](/source/Limbo_(programming_language)).[22] He described the language as "technology from the past come to save the future from itself."[21]: 8:17[22] Early Rust developer Manish Goregaokar similarly described Rust as being based on "mostly decades-old research."[20]

During the early years, the Rust [compiler](/source/Compiler) was written in about 38,000 lines of [OCaml](/source/OCaml).[21]: 15:34[23] Early Rust contained several features no longer present today, including explicit [object-oriented programming](/source/Object-oriented_programming) via an obj keyword[21]: 10:08 and a [typestates](/source/Typestate_analysis) system for variable state changes, such as going from uninitialized to initialized.[21]: 13:12

### 2009–2012: Mozilla sponsorship

Mozilla officially sponsored the Rust project in 2009.[20] [Brendan Eich](/source/Brendan_Eich) and other executives, intrigued by the possibility of using Rust for a safe [web browser](/source/Web_browser) [engine](/source/Browser_engine), placed engineers on the project including Patrick Walton, Niko Matsakis, Felix Klock, and Manish Goregaokar.[20] A conference room taken by the project developers was dubbed "the nerd cave," with a sign placed outside the door.[20]

During this time period, work had shifted from the initial OCaml compiler to a [self-hosting compiler](/source/Self-hosting_compiler) (*i.e.*, written in Rust) targeting [LLVM](/source/LLVM).[24][note 5] The ownership system was in place by 2010.[20] The Rust logo was developed in 2011 based on a bicycle chainring.[26]

Rust 0.1 became the first public release on January 20, 2012[27] for Windows, Linux, and MacOS.[28] The early 2010s witnessed increasing involvement from full-time engineers at Mozilla, open source volunteers outside Mozilla, and open source volunteers outside the United States.[20]

### 2012–2015: Evolution

The years from 2012 to 2015 were marked by substantial changes to the Rust [type system](/source/Type_system).[21]: 18:36[20] Memory management through the ownership system was gradually consolidated and expanded. By 2013, the [garbage collector](/source/Garbage_collection_(computer_science)) was rarely used, and was removed in favor of the ownership system.[20] Other features were removed in order to simplify the language, including typestates, the pure keyword,[29] various specialized pointer types, and syntax support for [channels](/source/Channel_(programming)).[21]: 22:32

According to Steve Klabnik, Rust was influenced during this period by developers coming from [C++](/source/C%2B%2B) (e.g., low-level performance of features), [scripting languages](/source/Scripting_language) (e.g., Cargo and package management), and [functional programming](/source/Functional_programming) (e.g., type systems development).[21]: 30:50

Graydon Hoare stepped down from Rust in 2013.[20] After Hoare's departure, it evolved organically under a federated governance structure, with a "core team" of initially six people,[21]: 21:45 and around 30-40 developers total across various other teams.[21]: 22:22 A [Request for Comments](/source/Request_for_Comments) (RFC) process for new language features was added in March 2014.[21]: 33:47 The core team would grow to nine people by 2016[21]: 21:45 with over 1600 RFCs.[21]: 34:08

According to Andrew Binstock for *[Dr. Dobb's Journal](/source/Dr._Dobb's_Journal)* in January 2014, while Rust was "widely viewed as a remarkably elegant language", adoption slowed because it radically changed from version to version.[30] Rust development at this time focused on finalizing features for version 1.0 so that it could begin promising [backward compatibility](/source/Backward_compatibility).[21]: 41:26

Six years after Mozilla's sponsorship, Rust 1.0 was published and became the first [stable release](/source/Stable_release) on May 15, 2015.[20] A year later, the Rust compiler had accumulated over 1,400 contributors and there were over 5,000 third-party libraries published on the Rust package management website Crates.io.[21]: 43:15

### 2015–2020: Servo and early adoption

Early homepage of Mozilla's [Servo browser engine](/source/Servo_browser_engine)

The development of the [Servo browser engine](/source/Servo_browser_engine) continued in parallel with Rust, jointly funded by Mozilla and [Samsung](/source/Samsung).[31] The teams behind the two projects worked in close collaboration; new features in Rust were tested out by the Servo team, and new features in Servo were used to give feedback back to the Rust team.[21]: 5:41 The first version of Servo was released in 2016.[20] The [Firefox](/source/Firefox) web browser shipped with Rust code as of 2016 (version 45),[21]: 53:30[32] but components of Servo did not appear in Firefox until September 2017 (version 57) as part of the [Gecko](/source/Gecko_(software)) and [Quantum](/source/Gecko_(software)#Quantum) projects.[33]

Improvements were made to the Rust toolchain ecosystem during the years following 1.0 including [Rustfmt](#Rustfmt), [integrated development environment](/source/Integrated_development_environment) integration,[21]: 44:56 and a regular compiler testing and release cycle.[21]: 46:48 Rust's community gained a [code of conduct](/source/Code_of_conduct) and an [IRC](/source/IRC) chat for discussion.[21]: 50:36

The earliest known adoption outside of Mozilla was by individual projects at Samsung, [Facebook](/source/Facebook) (now [Meta Platforms](/source/Meta_Platforms)), [Dropbox](/source/Dropbox), and Tilde, Inc., the company behind [ember.js](/source/Ember.js).[21]: 55:44[20] [Amazon Web Services](/source/Amazon_Web_Services) followed in 2020.[20] Engineers cited performance, lack of a garbage collector, safety, and pleasantness of working in the language as reasons for the adoption. Amazon developers cited a finding by Portuguese researchers that Rust code used [less energy](/source/Energy_efficiency_in_computing) compared to similar code written in [Java](/source/Java_(programming_language)).[20][34]

### 2020–present: Mozilla layoffs and Rust Foundation

In August 2020, Mozilla laid off 250 of its 1,000 employees worldwide, as part of a corporate restructuring caused by the [COVID-19 pandemic](/source/COVID-19_pandemic).[35][36] The team behind Servo was disbanded. The event raised concerns about the future of Rust.[37] In the following week, the Rust Core Team acknowledged the severe impact of the layoffs and announced that plans for a Rust foundation were underway. The first goal of the foundation would be to take ownership of all [trademarks](/source/Trademark) and [domain names](/source/Domain_name) and to take financial responsibility for their costs.[38]

On February 8, 2021, the formation of the [Rust Foundation](#Rust_Foundation) was announced by five founding companies: [Amazon Web Services](/source/Amazon_Web_Services), [Google](/source/Google), [Huawei](/source/Huawei), [Microsoft](/source/Microsoft), and [Mozilla](/source/Mozilla).[39][40] The foundation would provide financial support for Rust developers in the form of grants and server funding.[20] In a blog post published on April 6, 2021, Google announced support for Rust within the [Android Open Source Project](/source/Android_Open_Source_Project) as an alternative to C/C++.[41]

On November 22, 2021, the Moderation Team, which was responsible for enforcing the community code of conduct, announced their resignation "in protest of the Core Team placing themselves unaccountable to anyone but themselves".[42] In May 2022, members of the Rust leadership council posted a public response to the incident.[43]

The Rust Foundation posted a draft for a new trademark policy on April 6, 2023, which resulted in widespread negative reactions from Rust users and contributors.[44] The trademark policy included rules for how the Rust logo and name could be used.[44]

## Syntax and features

Main article: [Rust syntax](/source/Rust_syntax)

Rust's [syntax](/source/Syntax_(programming_languages)) is similar to that of [C](/source/C_(programming_language)) and [C++](/source/C%2B%2B),[45][46] although many of its features were influenced by [functional programming](/source/Functional_programming) languages such as [OCaml](/source/OCaml).[47] Hoare has described Rust as targeted at frustrated C++ developers.[22]

### Hello World program

Below is a ["Hello, World!" program](/source/%22Hello%2C_World!%22_program) in Rust. The fn keyword denotes a [function](/source/Function_(computer_programming)), and the println! [macro](/source/Macro_(computer_science)) (see [§ Macros](#Macros)) prints the message to [standard output](/source/Standard_output).[48] [Statements](/source/Statement_(computer_science)) in Rust are separated by [semicolons](/source/Semicolon#Programming).

fn main() {
    println!("Hello, World!");
}

### Variables

[Variables](/source/Variable_(computer_science)) in Rust are defined through the let keyword.[49] The example below assigns a value to the variable with name foo of type i32 and outputs its value; the type annotation : i32 can be omitted.

fn main() {
    let foo: i32 = 10;
    println!("The value of foo is {foo}");
}

Variables are [immutable](/source/Immutable) by default, unless the mut keyword is added.[50] The following example uses //, which denotes the start of a [comment](/source/Comment_(computer_programming)).[51]

fn main() {
    // This code would not compile without adding "mut".
    let mut foo = 10;
    println!("The value of foo is {foo}");
    foo = 20;
    println!("The value of foo is {foo}");
}

Multiple let expressions can define multiple variables with the same name, known as [variable shadowing](/source/Variable_shadowing). Variable shadowing allows transforming variables without having to name the variables differently.[52] The example below declares a new variable with the same name that is double the original value:

fn main() {
    let foo = 10;
    // This will output "The value of foo is 10"
    println!("The value of foo is {foo}");
    let foo = foo * 2;
    // This will output "The value of foo is 20"
    println!("The value of foo is {foo}");
}

Variable shadowing is also possible for values of different types. For example, going from a string to its length:

fn main() {
    let letters = "abc";
    let letters = letters.len();
}

### Block expressions and control flow

A *block expression* is delimited by [curly brackets](/source/Bracket#Curly_brackets). When the last expression inside a block does not end with a semicolon, the block evaluates to the value of that trailing expression:[53]

fn main() {
    let x = {
        println!("this is inside the block");
        1 + 2
    };
    println!("1 + 2 = {x}");
}

Trailing expressions of function bodies are used as the return value:[54]

fn add_two(x: i32) -> i32 {
    x + 2
}

#### if expressions

An if [conditional expression](/source/Conditional_expression) executes code based on whether the given value is true. else can be used for when the value evaluates to false, and else if can be used for combining multiple expressions.[55]

fn main() {
    let x = 10;
    if x > 5 {
        println!("value is greater than five");
    }

    if x % 7 == 0 {
        println!("value is divisible by 7");
    } else if x % 5 == 0 {
        println!("value is divisible by 5");
    } else {
        println!("value is not divisible by 7 or 5");
    }
}

if and else blocks can evaluate to a value, which can then be assigned to a variable:[55]

fn main() {
    let x = 10;
    let new_x = if x % 2 == 0 { x / 2 } else { 3 * x + 1 };
    println!("{new_x}");
}

#### while loops

[while](/source/While_loop) can be used to repeat a block of code while a condition is met.[56]

fn main() {
    // Iterate over all integers from 4 to 10
    let mut value = 4;
    while value <= 10 {
         println!("value = {value}");
         value += 1;
    }
}

#### for loops and iterators

[For loops](/source/For_loop) in Rust loop over elements of a collection.[57] for expressions work over any [iterator](/source/Iterator) type.

fn main() {
    // Using `for` with range syntax for the same functionality as above
    // The syntax 4..=10 means the range from 4 to 10, up to and including 10.
    for value in 4..=10 {
        println!("value = {value}");
    }
}

In the above code, 4..=10 is a value of type Range which implements the Iterator trait. The code within the curly braces is applied to each element returned by the iterator.

Iterators can be combined with functions over iterators like map, filter, and sum. For example, the following adds up all numbers between 1 and 100 that are multiples of 3:

(1..=100).filter(|x| x % 3 == 0).sum()

#### loop and break statements

More generally, the loop keyword allows repeating a portion of code until a break occurs. break may optionally exit the loop with a value. In the case of nested loops, labels denoted by 'label_name can be used to break an outer loop rather than the innermost loop.[58]

fn main() {
    let value = 456;
    let mut x = 1;
    let y = loop {
        x *= 10;
        if x > value {
            break x / 10;
        }
    };
    println!("largest power of ten that is smaller than or equal to value: {y}");

    let mut up = 1;
    'outer: loop {
        let mut down = 120;
        loop {
            if up > 100 {
                break 'outer;
            }

            if down < 4 {
                break;
            }

            down /= 2;
            up += 1;
            println!("up: {up}, down: {down}");
        }
        up *= 2;
    }
}

### Pattern matching

The match and if let expressions can be used for [pattern matching](/source/Pattern_matching). For example, match can be used to double an optional integer value if present, and return zero otherwise:[59]

fn double(x: Option<u64>) -> u64 {
    match x {
        Some(y) => y * 2,
        None => 0,
    }
}

Equivalently, this can be written with if let and else:

fn double(x: Option<u64>) -> u64 {
    if let Some(y) = x {
        y * 2
    } else {
        0
    }
}

### Types

Rust is [strongly typed](/source/Strongly_typed) and [statically typed](/source/Statically_typed), meaning that the types of all variables must be known at compilation time. Assigning a value of a particular type to a differently typed variable causes a [compilation error](/source/Compilation_error). [Type inference](/source/Type_inference) is used to determine the type of variables if unspecified.[60]

The type (), called the "unit type" in Rust, is a concrete type that has exactly one value. It occupies no memory (as it represents the absence of value). All functions that do not have an indicated return type implicitly return (). It is similar to void in other C-style languages, however void denotes the absence of a type and cannot have any value.

The default integer type is i32, and the default [floating point](/source/Floating_point) type is f64. If the type of a [literal](/source/Literal_(computer_programming)) number is not explicitly provided, it is either inferred from the context or the default type is used.[61]

#### Primitive types

[Integer types](/source/Integer_type) in Rust are named based on the [signedness](/source/Signedness) and the number of bits the type takes. For example, i32 is a signed integer that takes 32 bits of storage, whereas u8 is unsigned and only takes 8 bits of storage. isize and usize take storage depending on the [memory address bus width](/source/Bus_(computing)#Address_bus) of the compilation target. For example, when building for [32-bit targets](/source/32-bit_computing), both types will take up 32 bits of space.[62][63]

By default, integer literals are in base-10, but different [radices](/source/Radix) are supported with prefixes, for example, 0b11 for [binary numbers](/source/Binary_number), 0o567 for [octals](/source/Octal), and 0xDB for [hexadecimals](/source/Hexadecimal). By default, integer literals default to i32 as its type. Suffixes such as 4u32 can be used to explicitly set the type of a literal.[64] Byte literals such as b'X' are available to represent the [ASCII](/source/ASCII) value (as a u8) of a specific character.[65]

The [Boolean type](/source/Boolean_type) is referred to as bool which can take a value of either true or false. A char takes up 32 bits of space and represents a Unicode scalar value:[66] a [Unicode codepoint](/source/Unicode_codepoint) that is not a [surrogate](/source/Universal_Character_Set_characters#Surrogates).[67] [IEEE 754](/source/IEEE_754) floating point numbers are supported with f32 for [single precision floats](/source/Single_precision_float) and f64 for [double precision floats](/source/Double_precision_float).[68]

#### Compound types

Compound types can contain multiple values. Tuples are fixed-size lists that can contain values whose types can be different. Arrays are fixed-size lists whose values are of the same type. Expressions of the tuple and array types can be written through listing the values, and can be accessed with .index (with tuples) or [index] (with arrays):[69]

let tuple: (u32, bool) = (3, true);
let array: [i8; 5] = [1, 2, 3, 4, 5];
let value = tuple.1; // true
let value = array[2]; // 3

Arrays can also be constructed through copying a single value a number of times:[70]

let array2: [char; 10] = [' '; 10];

### Ownership and references

Rust's ownership system consists of rules that ensure memory safety without using a garbage collector. At compile time, each value must be attached to a variable called the *owner* of that value, and every value must have exactly one owner.[71] Values are moved between different owners through assignment or passing a value as a function parameter. Values can also be *borrowed,* meaning they are temporarily passed to a different function before being returned to the owner.[72] With these rules, Rust can prevent the creation and use of [dangling pointers](/source/Dangling_pointers):[72][73]

fn print_string(s: String) {
    println!("{}", s);
}

fn main() {
    let s = String::from("Hello, World");
    print_string(s); // s consumed by print_string
    // s has been moved, so cannot be used any more
    // another print_string(s); would result in a compile error
}

The function print_string takes ownership over the String value passed in; Alternatively, & can be used to indicate a [reference](/source/Reference_(computer_science)) type (in &String) and to create a reference (in &s):[74]

fn print_string(s: &String) {
    println!("{}", s);
}

fn main() {
    let s = String::from("Hello, World");
    print_string(&s); // s borrowed by print_string
    print_string(&s); // s has not been consumed; we can call the function many times
}

Because of these ownership rules, Rust types are known as *[affine types](/source/Affine_type)*, meaning each value may be used at most once. This enforces a form of [software fault isolation](/source/Software_fault_isolation) as the owner of a value is solely responsible for its correctness and deallocation.[75]

When a value goes out of scope, it is *dropped* by running its [destructor](/source/Destructor_(computer_programming)). The destructor may be programmatically defined through implementing the Drop [trait](#Traits). This helps manage resources such as file handles, network sockets, and [locks](/source/Lock_(computer_science)), since when objects are dropped, the resources associated with them are closed or released automatically.[76]

#### Lifetimes

[Object lifetime](/source/Object_lifetime) refers to the period of time during which a reference is valid; that is, the time between the object creation and destruction.[77] These *lifetimes* are implicitly associated with all Rust reference types. While often inferred, they can also be indicated explicitly with named lifetime parameters (often denoted 'a, 'b, and so on).[78]

A value's lifetime in Rust is inferred from the set of locations in the source code (i.e., function, line, and column numbers) for which a variable is valid.[79] For example, a reference to a local variable has a lifetime from the expression it is declared in up until the last use of it.[79]

fn main() {
    let mut x = 5;            // ------------------+- Lifetime 'a
                              //                   |
    let r = &x;               // -+-- Lifetime 'b  |
                              //  |                |
    println!("r: {}", r);     // -+                |
    // Since r is no longer used,                  |
    // its lifetime ends                           |
    let r2 = &mut x;          // -+-- Lifetime 'c  |
}                             // ------------------+

The borrow checker in the Rust compiler then enforces that references are only used in the locations of the source code where the associated lifetime is valid.[80][81] In the example above, storing a reference to variable x in r is valid, as variable x has a longer lifetime ('a) than variable r ('b). However, when x has a shorter lifetime, the borrow checker would reject the program:

fn main() {
    let r;                    // ------------------+- Lifetime 'a
                              //                   |
    {                         //                   |
        let x = 5;            // -+-- Lifetime 'b  |
        r = &x; // ERROR: x does  |                |
    }           // not live long -|                |
                // enough                          |
    println!("r: {}", r);     //                   |
}                             // ------------------+

Since the lifetime of the referenced variable ('b) is shorter than the lifetime of the variable holding the reference ('a), the borrow checker errors, preventing x from being used from outside its scope.[82]

Lifetimes can be indicated using explicit *lifetime parameters* on function arguments. For example, the following code specifies that the reference returned by the function has the same lifetime as original (and *not* necessarily the same lifetime as prefix):[83]

fn remove_prefix<'a>(mut original: &'a str, prefix: &str) -> &'a str {
    if original.starts_with(prefix) {
        original = original[prefix.len()..];
    }
    original
}

In the compiler, ownership and lifetimes work together to prevent memory safety issues such as dangling pointers.[84][85]

### User-defined types

User-defined types are created with the struct or enum keywords. The struct keyword is used to denote a [record type](/source/Record_(computer_science)) that groups multiple related values.[86] enums can take on different variants at runtime, with its capabilities similar to [algebraic data types](/source/Algebraic_data_types) found in functional programming languages.[87] Both records and enum variants can contain [fields](/source/Field_(computer_science)) with different types.[88] Alternative names, or aliases, for the same type can be defined with the type keyword.[89]

The impl keyword can define methods for a user-defined type. Data and functions are defined separately. Implementations fulfill a role similar to that of [classes](/source/Class_(programming)) within other languages.[90]

#### Standard library

A diagram of the dependencies between the standard library modules of Rust

The Rust [standard library](/source/Standard_library) defines and implements many widely used custom data types, including core data structures such as Vec, Option, and HashMap, as well as [smart pointer](/source/Smart_pointer) types. Rust provides a way to exclude most of the standard library using the attribute #![no_std], for applications such as embedded devices. Internally, the standard library is divided into three parts, core, alloc, and std, where std and alloc are excluded by #![no_std].[91]

Rust uses the [option type](/source/Option_type) Option<T> to define optional values, which can be matched using if let or match to access the inner value:[92]

fn main() {
    let name1: Option<&str> = None;
    // In this case, nothing will be printed out
    if let Some(name) = name1 {
        println!("{name}");
    }

    let name2: Option<&str> = Some("Matthew");
    // In this case, the word "Matthew" will be printed out
    if let Some(name) = name2 {
        println!("{name}");
    }
}

Similarly, Rust's [result type](/source/Result_type) Result<T, E> holds either a successfully computed value (the Ok variant) or an error (the Err variant).[93] Like Option, the use of Result means that the inner value cannot be used directly; programmers must use a match expression, syntactic sugar such as ? (the "try" operator), or an explicit unwrap assertion to access it. Both Option and Result are used throughout the standard library and are a fundamental part of Rust's explicit approach to handling errors and missing data.

### Pointers

The & and &mut reference types are guaranteed to not be null and point to valid memory.[94] The raw pointer types *const and *mut opt out of the safety guarantees, thus they may be null or invalid; however, it is impossible to dereference them unless the code is explicitly declared unsafe through the use of an unsafe block.[95] Unlike dereferencing, the creation of raw pointers is allowed inside safe Rust code.[96]

### Type conversion

This section is an excerpt from [Type conversion § Rust](/source/Type_conversion#Rust).[[edit](https://en.wikipedia.org/w/index.php?title=Type_conversion&action=edit)]

Rust provides no implicit type conversion (coercion) between most primitive types. But, explicit type conversion (casting) can be performed using the as keyword.[97]

let x: i32 = 1000;
println!("1000 as a u16 is: {}", x as u16);

A presentation on Rust by Emily Dunham from [Mozilla](/source/Mozilla)'s Rust team ([linux.conf.au](/source/Linux.conf.au) conference, Hobart, 2017)

### Polymorphism

Rust supports [polymorphism](/source/Polymorphism_(computer_science)) through [traits](/source/Trait_(computer_programming)), [generic functions](/source/Generic_function), and [trait objects](/source/Trait_object_(Rust)).[98]

#### Traits

Common behavior between types is declared using traits and impl blocks:[99]

trait Zero: Sized {
    fn zero() -> Self;
    fn is_zero(&self) -> bool
    where
        Self: PartialEq,
    {
        self == &Zero::zero()
    }
}

impl Zero for u32 {
    fn zero() -> u32 { 0 }
}

impl Zero for f32 {
    fn zero() -> Self { 0.0 }
}

The example above includes a method is_zero which provides a default implementation that may be overridden when implementing the trait.[99]

#### Generic functions

A function can be made generic by adding type parameters inside angle brackets (<Num>), which only allow types that implement the trait:

// zero is a generic function with one type parameter, Num
fn zero<Num: Zero>() -> Num {
    Num::zero()
}

fn main() {
    let a: u32 = zero();
    let b: f32 = zero();
    assert!(a.is_zero() && b.is_zero());
}

In the examples above, Num: Zero as well as where Self: PartialEq are trait bounds that constrain the type to only allow types that implement Zero or PartialEq.[99] Within a trait or impl, Self refers to the type that the code is implementing.[100]

Generics can be used in functions to allow implementing a behavior for different types without repeating the same code (see [bounded parametric polymorphism](/source/Bounded_parametric_polymorphism)). Generic functions can be written in relation to other generics, without knowing the actual type.[101]

#### Trait objects

By default, traits use [static dispatch](/source/Static_dispatch): the compiler [monomorphizes](/source/Monomorphization) the function for each concrete type instance, yielding performance equivalent to type-specific code at the cost of longer compile times and larger binaries.[102]

When the exact type is not known at compile time, Rust provides [trait objects](/source/Trait_object_(Rust)) &dyn Trait and Box<dyn Trait>.[103] Trait object calls use [dynamic dispatch](/source/Dynamic_dispatch) via a lookup table; a trait object is a "fat pointer" carrying both a data pointer and a method table pointer.[102] This indirection adds a small runtime cost, but it keeps a single copy of the code and reduces binary size. Only "object-safe" traits are eligible to be used as trait objects.[104]

This approach is similar to [duck typing](/source/Duck_typing), where all data types that implement a given trait can be treated as functionally interchangeable.[105] The following example creates a list of objects where each object implements the Display trait:

use std::fmt::Display;

let v: Vec<Box<dyn Display>> = vec![
    Box::new(3),
    Box::new(5.0),
    Box::new("hi"),
];

for x in v {
    println!("{x}");
}

If an element in the list does not implement the Display trait, it will cause a compile-time error.[106]

### Memory management

Rust does not use [garbage collection](/source/Garbage_collection_(computer_science)). Memory and other resources are instead managed through the "resource acquisition is initialization" convention,[107] with optional [reference counting](/source/Reference_counting). Rust provides deterministic management of resources, with very low [overhead](/source/Overhead_(computing)).[108] Values are [allocated on the stack](/source/Stack-based_memory_allocation) by default, and all [dynamic allocations](/source/Dynamic_allocation) must be explicit.[109]

The built-in reference types using the & symbol do not involve run-time reference counting. The safety and validity of the underlying pointers is verified at compile time, preventing [dangling pointers](/source/Dangling_pointers) and other forms of [undefined behavior](/source/Undefined_behavior).[110] Rust's type system separates shared, [immutable](/source/Immutable) references of the form &T from unique, mutable references of the form &mut T. A mutable reference can be coerced to an immutable reference, but not vice versa.[111]

### Unsafe

Rust's memory safety checks (See [#Safety](#Safety)) may be circumvented through the use of unsafe blocks. This allows programmers to dereference arbitrary raw pointers, call external code, or perform other low-level functionality not allowed by safe Rust.[112] Some low-level functionality enabled in this way includes [volatile memory access](/source/Volatile_(computer_programming)), architecture-specific intrinsics, [type punning](/source/Type_punning), and inline assembly.[113]

Unsafe code is needed, for example, in the implementation of data structures.[114] A frequently cited example is that it is difficult or impossible to implement [doubly linked lists](/source/Doubly_linked_list) in safe Rust.[115][116][117][118]

Programmers using unsafe Rust are considered responsible for upholding Rust's memory and type safety requirements, for example, that no two mutable references exist pointing to the same location.[119] If programmers write code which violates these requirements, this results in [undefined behavior](/source/Undefined_behavior).[119] The Rust documentation includes a list of behavior considered undefined, including accessing dangling or misaligned pointers, or breaking the aliasing rules for references.[120]

### Macros

Macros allow generation and transformation of Rust code to reduce repetition. Macros come in two forms, with *declarative macros* defined through macro_rules!, and *procedural macros*, which are defined in separate crates.[121][122]

#### Declarative macros

A declarative macro (also called a "macro by example") is a macro, defined using the macro_rules! keyword, that uses pattern matching to determine its expansion.[123][124] Below is an example that sums over all its arguments:

macro_rules! sum {
    ( $initial:expr $(, $expr:expr )* $(,)? ) => {
        $initial $(+ $expr)*
    }
}

fn main() {
    let x = sum!(1, 2, 3);
    println!("{x}"); // prints 6
}

In this example, the macro named sum is defined using the form macro_rules! sum { (...) => { ... } }. The first part inside the parentheses of the definition, the macro pattern ( $initial:expr $(, $expr:expr )* $(,)? ) specifies the structure of input it can take. Here, $initial:expr represents the first expression, while $(, $expr:expr )* means there can be zero or more additional comma-separated expressions after it. The trailing $(,)? allows the caller to optionally include a final comma without causing an error. The second part after the arrow => describes what code will be generated when the macro is invoked. In this case, $initial $(+ $expr)* means that the generated code will start with the first expression, followed by a + and each of the additional expressions in sequence. The * again means "repeat this pattern zero or more times". This means, when the macro is later called in line 8, as sum!(1, 2, 3) the macro will resolve to 1 + 2 + 3 representing the addition of all of the passed expressions.

#### Procedural macros

Procedural macros are Rust functions that run and modify the compiler's input [token](/source/Token_(parser)) stream, before any other components are compiled. They are generally more flexible than declarative macros, but are more difficult to maintain due to their complexity.[125][126]

Procedural macros come in three flavors:

- Function-like macros custom!(...)

- Derive macros #[derive(CustomDerive)]

- Attribute macros #[custom_attribute]

### Interface with C and C++

Rust supports the creation of [foreign function interfaces](/source/Foreign_function_interface) (FFI) through the extern keyword. A function that uses the C [calling convention](/source/Calling_convention) can be written using extern "C" fn. Symbols can be exported from Rust to other languages through the #[unsafe(no_mangle)] attribute, and symbols can be imported into Rust through extern blocks:[note 6][128]

#[unsafe(no_mangle)]
pub extern "C" fn exported_from_rust(x: i32) -> i32 { x + 1 }
unsafe extern "C" {
    fn imported_into_rust(x: i32) -> i32;
}

The #[repr(C)] attribute enables deterministic memory layouts for structs and enums for use across FFI boundaries.[128] External libraries such as bindgen and cxx can generate Rust bindings for C/C++.[128][129]

## Safety

[Safety properties](/source/Safety_properties) guaranteed by Rust include [memory safety](/source/Memory_safety), [type safety](/source/Type_safety), and [data race](/source/Data_race) freedom. As described above, these guarantees can be circumvented by using the unsafe keyword.

Memory safety includes the absence of dereferences to [null](/source/Null_pointer), [dangling](/source/Dangling_pointer), and misaligned [pointers](/source/Pointer_(computer_programming)), and the absence of [buffer overflows](/source/Buffer_overflow) and [double free](/source/Double_free) errors.[130][131][132][133]

[Memory leaks](/source/Memory_leak) are possible in safe Rust.[134] Memory leaks may occur as a result of creating reference counted pointers that point at each other (a reference cycle)[134] or can be deliberately created through calling Box::leak.[135]

## Ecosystem

Compiling a Rust program with Cargo

The Rust ecosystem includes its compiler, its [standard library](#Standard_library), and additional components for software development. Component installation is typically managed by rustup, a Rust [toolchain](/source/Toolchain) installer developed by the Rust project.[136]

### Compiler

The Rust compiler, rustc, compiles Rust code into [binaries](/source/Executable). First, the compiler parses the source code into an [AST](/source/Abstract_syntax_tree). Next, this AST is lowered to [IR](/source/Intermediate_representation). The compiler backend is then invoked as a subcomponent to apply [optimizations](/source/Optimizing_compiler) and translate the resulting IR into [object code](/source/Object_code). Finally, a [linker](/source/Linker_(computing)) is used to combine the object(s) into a single executable image.[137]

rustc uses [LLVM](/source/LLVM) as its compiler backend by default, but it also supports using alternative backends such as [GCC](/source/GNU_Compiler_Collection) and [Cranelift](/source/Cranelift).[138] The intention of those alternative backends is to increase platform coverage of Rust or to improve compilation times.[139][140]

### Cargo

Screenshot of crates.io in June 2022

Cargo is Rust's [build system](/source/Build_system_(software_development)) and [package manager](/source/Package_manager). It downloads, compiles, distributes, and uploads packages—called *crates*—that are maintained in an official registry. It also acts as a front-end for Clippy and other Rust components.[141]

By default, Cargo sources its dependencies from the user-contributed registry *crates.io*, but [Git](/source/Git) repositories, crates in the local filesystem, and other external sources can also be specified as dependencies.[142]

Cargo supports reproducible builds through two metadata files: Cargo.toml and Cargo.lock.[143] Cargo.toml declares each package used and their version requirements. Cargo.lock is generated automatically during dependency resolution and records exact versions of all dependencies, including [transitive dependencies](/source/Transitive_dependency).[144]

### Rustfmt

Rustfmt is a [code formatter](/source/Code_formatter) for Rust. It formats whitespace and [indentation](/source/Indentation_style) to produce code in accordance with a common [style](/source/Programming_style), unless otherwise specified. It can be invoked as a standalone program, or from a Rust project through Cargo.[145]

### Clippy

Example output of Clippy on a hello world Rust program

Clippy is Rust's built-in [linting](/source/Linting) tool to improve the correctness, performance, and readability of Rust code. As of 2026[\[update\]](https://en.wikipedia.org/w/index.php?title=Rust_(programming_language)&action=edit), it has over 800 rules.[146][147]

### Versioning system

Following Rust 1.0, new features are developed in *nightly* versions which are released daily. During each six-week release cycle, changes to nightly versions are released to beta, while changes from the previous beta version are released to a new stable version.[148]

Every two or three years, a new "edition" is produced. Editions are released to allow making limited [breaking changes](/source/Breaking_changes), such as promoting await to a keyword to support [async/await](/source/Async%2Fawait) features. Crates targeting different editions can interoperate with each other, so a crate can upgrade to a new edition even if its callers or its dependencies still target older editions. Migration to a new edition can be assisted with automated tooling.[149]

### IDE support

*rust-analyzer* is a set of [utilities](/source/Utility_software) that provides [integrated development environments](/source/Integrated_development_environment) (IDEs) and [text editors](/source/Text_editor) with information about a Rust project through the [Language Server Protocol](/source/Language_Server_Protocol). This enables features including [autocomplete](/source/Autocomplete), and [compilation error](/source/Compilation_error) display, while editing code.[150]

## Performance

Since it performs no garbage collection, Rust is often faster than other memory-safe languages.[151][75][152] Most of Rust's memory safety guarantees impose no runtime overhead,[153] with the exception of [array indexing](/source/Array_(data_structure)) which is checked at runtime by default.[154] The performance impact of array indexing bounds checks varies, but can be significant in some cases.[154]

Many of Rust's features are so-called *zero-cost abstractions*, meaning they are optimized away at compile time and incur no runtime penalty.[155] The ownership and borrowing system permits [zero-copy](/source/Zero-copy) implementations for some performance-sensitive tasks, such as [parsing](/source/Parsing).[156] [Static dispatch](/source/Static_dispatch) is used by default to eliminate [method calls](/source/Method_call), except for methods called on dynamic trait objects.[157] The compiler uses [inline expansion](/source/Inline_expansion) to eliminate [function calls](/source/Function_call) and statically dispatched method invocations.[158]

Since Rust uses [LLVM](/source/LLVM), all performance improvements in LLVM apply to Rust also.[159] Unlike C and C++, Rust allows the compiler to reorder struct and enum elements unless a #[repr(C)] representation attribute is applied.[160] This allows the compiler to optimize for memory footprint, alignment, and padding, which can be used to produce more efficient code in some cases.[161]

## Adoption

See also: [Category:Software programmed in Rust](https://en.wikipedia.org/wiki/Category:Software_programmed_in_Rust)

[Firefox](/source/Firefox) has components written in Rust as part of the underlying [Gecko](/source/Gecko_(software)) browser engine.

In [web services](/source/Web_service), [OpenDNS](/source/OpenDNS), a [DNS](/source/DNS) resolution service owned by [Cisco](/source/Cisco), uses Rust internally.[162][163] [Amazon Web Services](/source/Amazon_Web_Services) uses Rust in "performance-sensitive components" of services. In 2019, AWS [open-sourced](/source/Open_sourced) [Firecracker](/source/Firecracker_(software)), a virtualization solution primarily written in Rust.[164] [Microsoft Azure](/source/Microsoft_Azure) IoT Edge, a platform used to run Azure services on [IoT](/source/IoT) devices, has components implemented in Rust.[165] Microsoft also uses Rust to run containerized modules with [WebAssembly](/source/WebAssembly) and [Kubernetes](/source/Kubernetes).[166] [Cloudflare](/source/Cloudflare), a company providing [content delivery network](/source/Content_delivery_network) services, used Rust to build a new [web proxy](/source/Web_proxy) named Pingora for increased performance and efficiency.[167] The [npm package manager](/source/Npm) used Rust for its production authentication service in 2019.[168][169][170]

The [Rust for Linux](/source/Rust_for_Linux) project has been supported in the [Linux kernel](/source/Linux_kernel) since 2022.

In operating systems, the Linux kernel began introducing experimental support for Rust code in Version 6.1 in late 2022, as part of the [Rust for Linux](/source/Rust_for_Linux) project.[171][172][173] The first drivers written in Rust were included in version 6.8.[171] In 2025, kernel developers at the [Linux Kernel Developers Summit](/source/Linux_Kernel_Developers_Summit) determined the project to be a success, and Rust usage for kernel code will no longer be considered experimental.[174] The [Android](/source/Android_(operating_system)) developers used Rust in 2021 to rewrite existing components.[175][176] [Microsoft](/source/Microsoft) has rewritten parts of [Windows](/source/Windows) in Rust.[177] The r9 project aims to re-implement [Plan 9 from Bell Labs](/source/Plan_9_from_Bell_Labs) in Rust.[178] Rust has also been used in the development of new operating systems such as [Redox](/source/Redox_(operating_system)), a "Unix-like" operating system and [microkernel](/source/Microkernel),[179] Theseus, an experimental operating system with modular state management,[180][181] and most of [Fuchsia](/source/Fuchsia_(operating_system)).[182] Rust is used for command-line tools and operating system components such as [stratisd](/source/Stratis_(configuration_daemon)), a [file system](/source/File_system) manager[183][184] and COSMIC, a [desktop environment](/source/Desktop_environment) by [System76](/source/System76).[185]

In web development, [Deno](/source/Deno_(software)), a secure runtime for [JavaScript](/source/JavaScript) and [TypeScript](/source/TypeScript), is built on top of [V8](/source/V8_(JavaScript_engine)) using Rust and Tokio.[186] Other notable adoptions in this space include [Ruffle](/source/Ruffle_(software)), an open-source [SWF](/source/SWF) emulator,[187] and [Polkadot](/source/Polkadot_(cryptocurrency)), an open source [blockchain](/source/Blockchain) and [cryptocurrency](/source/Cryptocurrency) platform.[188] Components from the Servo browser engine (funded by [Mozilla](/source/Mozilla) and [Samsung](/source/Samsung)) were incorporated in the [Gecko](/source/Gecko_(software)) browser engine underlying [Firefox](/source/Firefox).[189] In January 2023, Google ([Alphabet](/source/Alphabet_Inc.)) announced support for using third party Rust libraries in [Chromium](/source/Chromium_(web_browser)).[190][191]

In other uses, [Discord](/source/Discord), an [instant messaging](/source/Instant_messaging) software company, rewrote parts of its system in Rust for increased performance in 2020. In the same year, Dropbox announced that its [file synchronization](/source/File_synchronization) had been rewritten in Rust. [Facebook](/source/Facebook) ([Meta](/source/Meta_Platforms)) used Rust to redesign its system that manages source code for internal projects.[20]

In the 2025 [Stack Overflow](/source/Stack_Overflow) Developer Survey, 14.8% of respondents had recently done extensive development in Rust.[192] The survey named Rust the "most admired programming language" annually from 2016 to 2025 (inclusive), as measured by the number of existing developers interested in continuing to work in the language.[193][note 7] In 2025, 29.2% of developers not currently working in Rust expressed an interest in doing so.[192]

## In academic research

Rust's safety and performance have been investigated in programming languages research.[194][114][195]

In other fields, a journal article published to *[Proceedings of the International Astronomical Union](/source/Proceedings_of_the_International_Astronomical_Union)* used Rust to simulate multi-planet systems.[196] An article published in *[Nature](/source/Nature_(journal))* shared stories of bioinformaticians using Rust.[141] Both articles cited Rust's performance and safety as advantages, and the [learning curve](/source/Learning_curve) as being a primary drawback to Rust adoption.

The 2025 [DARPA](/source/DARPA) project TRACTOR aims to automatically translate C to Rust using techniques such as static analysis, dynamic analysis, and large language models.[197]

## Community

Some Rust users refer to themselves as Rustaceans (similar to the word [crustacean](/source/Crustacean)) and have adopted an orange crab, Ferris, as their unofficial mascot.[198][199]

According to the *[MIT Technology Review](/source/MIT_Technology_Review)*, the Rust community has been seen as "unusually friendly" to newcomers and particularly attracted people from the [queer community](/source/Queer_community), partly due to its [code of conduct](/source/Code_of_conduct).[20] Inclusiveness has been cited as an important factor for some Rust developers.[141] The official Rust blog collects and publishes demographic data each year.[200]

### Rust Foundation

Rust Foundation Formation February 8, 2021; 5 years ago (2021-02-08) Founders Amazon Web Services Google Huawei Microsoft Mozilla Foundation Type Nonprofit organization Location United States Chairperson Shane Miller Executive Director Rebecca Rumbul Website foundation.rust-lang.org

The **Rust Foundation** is a [non-profit](/source/Non-profit) [membership organization](/source/Membership_organization) incorporated in [United States](/source/United_States); it manages the Rust trademark, infrastructure, and assets.[201][46]

It was established on February 8, 2021, with five founding corporate members (Amazon Web Services, Huawei, Google, Microsoft, and Mozilla).[202] The foundation's board was chaired by Shane Miller,[203] with Ashley Williams as interim executive director.[46] In late 2021, Rebecca Rumbul became executive director and CEO.[204]

### Governance teams

The Rust project is maintained by 8 top-level *teams* as of November 2025[\[update\]](https://en.wikipedia.org/w/index.php?title=Rust_(programming_language)&action=edit): the leadership council, compiler team, dev tools team, infrastructure team, language team, launching pad, library team, and moderation team.[205] The leadership council oversees the project and is formed by representatives among the other teams.[206]

## See also

- [Comparison of programming languages](/source/Comparison_of_programming_languages)

- [History of programming languages](/source/History_of_programming_languages)

- [List of programming languages](/source/List_of_programming_languages)

- [List of Rust software and tools](/source/List_of_Rust_software_and_tools)

- [Outline of the Rust programming language](/source/Outline_of_the_Rust_programming_language)

## Notes

1. **[^](#cite_ref-3)** Including build tools, host tools, and standard library support for [x86-64](/source/X86-64), [ARM](/source/ARM_architecture_family), [MIPS](/source/MIPS_architecture), [RISC-V](/source/RISC-V), [WebAssembly](/source/WebAssembly), [i686](/source/I686), [AArch64](/source/AArch64), [PowerPC](/source/PowerPC), and [s390x](/source/Linux_on_IBM_Z).[2]

1. **[^](#cite_ref-4)** Including [Windows](/source/Windows), [Linux](/source/Linux), [macOS](/source/MacOS), [FreeBSD](/source/FreeBSD), [NetBSD](/source/NetBSD), and [Illumos](/source/Illumos). Host build tools on [Android](/source/Android_(operating_system)), [iOS](/source/IOS), [Haiku](/source/Haiku_(operating_system)), [Redox](/source/Redox_(operating_system)), and [Fuchsia](/source/Fuchsia_(operating_system)) are not officially shipped; these operating systems are supported as targets.[2]

1. **[^](#cite_ref-7)** Third-party dependencies, e.g., [LLVM](/source/LLVM) or [MSVC](/source/MSVC), are subject to their own licenses.[3][4]

1. ^ [***a***](#cite_ref-nil_10-0) [***b***](#cite_ref-nil_10-1) NIL is cited as an influence for Rust in multiple sources; this likely refers to Network Implementation Language developed by Robert Strom and others at [IBM](/source/IBM), which pioneered [typestate analysis](/source/Typestate_analysis),[5][6] not to be confused with [New Implementation of LISP](/source/NIL_(programming_language)).

1. **[^](#cite_ref-30)** The list of Rust compiler versions (referred to as a bootstrapping chain) has history going back to 2012.[25]

1. **[^](#cite_ref-133)** wrapping no_mangle with unsafe as well as prefacing the extern "C" block with unsafe are required in the 2024 edition or later.[127]

1. **[^](#cite_ref-200)** That is, among respondents who have done "extensive development work [with Rust] in over the past year" (14.8%), Rust had the largest percentage who also expressed interest to "work in [Rust] over the next year" (72.4%).[192]

## References

### Book sources

- Gjengset, Jon (2021). *Rust for Rustaceans* (1st ed.). No Starch Press. [ISBN](/source/ISBN_(identifier)) [9781718501850](https://en.wikipedia.org/wiki/Special:BookSources/9781718501850). [OCLC](/source/OCLC_(identifier)) [1277511986](https://search.worldcat.org/oclc/1277511986).

- Klabnik, Steve; Nichols, Carol (2019-08-12). [*The Rust Programming Language (Covers Rust 2018)*](https://books.google.com/books?id=0Vv6DwAAQBAJ). No Starch Press. [ISBN](/source/ISBN_(identifier)) [978-1-7185-0044-0](https://en.wikipedia.org/wiki/Special:BookSources/978-1-7185-0044-0).

- Blandy, Jim; Orendorff, Jason; Tindall, Leonora F. S. (2021). *Programming Rust: Fast, Safe Systems Development* (2nd ed.). O'Reilly Media. [ISBN](/source/ISBN_(identifier)) [978-1-4920-5254-8](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4920-5254-8). [OCLC](/source/OCLC_(identifier)) [1289839504](https://search.worldcat.org/oclc/1289839504).

- McNamara, Tim (2021). *Rust in Action*. Manning Publications. [ISBN](/source/ISBN_(identifier)) [978-1-6172-9455-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-6172-9455-6). [OCLC](/source/OCLC_(identifier)) [1153044639](https://search.worldcat.org/oclc/1153044639).

- Klabnik, Steve; Nichols, Carol (2023). *The Rust programming language* (2nd ed.). No Starch Press. [ISBN](/source/ISBN_(identifier)) [978-1-7185-0310-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-7185-0310-6). [OCLC](/source/OCLC_(identifier)) [1363816350](https://search.worldcat.org/oclc/1363816350).

### Others

1. **[^](#cite_ref-wikidata-f96cfa0492ae34c34b85534b4c76f12a0958ed48-v20_1-0)** ["Announcing Rust 1.96.0"](https://blog.rust-lang.org/2026/05/28/Rust-1.96.0/). 2026-05-28. Retrieved 2026-05-28.

1. ^ [***a***](#cite_ref-CrossPlatform_2-0) [***b***](#cite_ref-CrossPlatform_2-1) ["Platform Support"](https://doc.rust-lang.org/rustc/platform-support.html). *The rustc book*. [Archived](https://web.archive.org/web/20220630164523/https://doc.rust-lang.org/rustc/platform-support.html) from the original on 2022-06-30. Retrieved 2022-06-27.

1. **[^](#cite_ref-5)** ["Copyright"](https://github.com/rust-lang/rust/blob/master/COPYRIGHT). *[GitHub](/source/GitHub)*. The Rust Programming Language. 2022-10-19. [Archived](https://web.archive.org/web/20230722190056/http://github.com/rust-lang/rust/blob/master/COPYRIGHT) from the original on 2023-07-22. Retrieved 2022-10-19.

1. **[^](#cite_ref-licenses_6-0)** ["Licenses"](https://www.rust-lang.org/policies/licenses). *The Rust Programming Language*. [Archived](https://web.archive.org/web/20250223193908/https://www.rust-lang.org/policies/licenses) from the original on 2025-02-23. Retrieved 2025-03-07.

1. **[^](#cite_ref-Strom1983_8-0)** Strom, Robert E. (1983). "Mechanisms for compile-time enforcement of security". *Proceedings of the 10th ACM SIGACT-SIGPLAN symposium on Principles of programming languages - POPL '83*. pp. 276–284. [doi](/source/Doi_(identifier)):[10.1145/567067.567093](https://doi.org/10.1145%2F567067.567093). [ISBN](/source/ISBN_(identifier)) [0897910907](https://en.wikipedia.org/wiki/Special:BookSources/0897910907). [S2CID](/source/S2CID_(identifier)) [6630704](https://api.semanticscholar.org/CorpusID:6630704).

1. **[^](#cite_ref-9)** Strom, Robert E.; Yemini, Shaula (1986). ["Typestate: A programming language concept for enhancing software reliability"](https://www.cs.cmu.edu/~aldrich/papers/classic/tse12-typestate.pdf) (PDF). *IEEE Transactions on Software Engineering*. **12** (1). IEEE: 157–171. [Bibcode](/source/Bibcode_(identifier)):[1986ITSEn..12..157S](https://ui.adsabs.harvard.edu/abs/1986ITSEn..12..157S). [doi](/source/Doi_(identifier)):[10.1109/tse.1986.6312929](https://doi.org/10.1109%2Ftse.1986.6312929). [S2CID](/source/S2CID_(identifier)) [15575346](https://api.semanticscholar.org/CorpusID:15575346).

1. **[^](#cite_ref-11)** ["Uniqueness Types"](https://blog.rust-lang.org/2016/08/10/Shape-of-errors-to-come.html). *Rust Blog*. [Archived](https://web.archive.org/web/20160915133745/https://blog.rust-lang.org/2016/08/10/Shape-of-errors-to-come.html) from the original on 2016-09-15. Retrieved 2016-10-08. Those of you familiar with the Elm style may recognize that the updated --explain messages draw heavy inspiration from the Elm approach.

1. **[^](#cite_ref-influences_12-0)** ["Influences"](https://doc.rust-lang.org/reference/influences.html). *The Rust Reference*. [Archived](https://web.archive.org/web/20231126231034/https://doc.rust-lang.org/reference/influences.html) from the original on 2023-11-26. Retrieved 2023-12-31.

1. **[^](#cite_ref-13)** ["Uniqueness Types"](http://docs.idris-lang.org/en/latest/reference/uniqueness-types.html). *Idris 1.3.3 documentation*. [Archived](https://web.archive.org/web/20181121072557/http://docs.idris-lang.org/en/latest/reference/uniqueness-types.html) from the original on 2018-11-21. Retrieved 2022-07-14. They are inspired by ... ownership types and borrowed pointers in the Rust programming language.

1. **[^](#cite_ref-14)** Eberlei, Benjamin; Schröder, Martin (2020-03-09). ["PHP RFC: Attributes v2"](https://wiki.php.net/rfc/attributes_v2). *wiki.php.net*. Retrieved 2026-05-11.

1. **[^](#cite_ref-15)** Tovilo, Ilija (2020-05-22). ["PHP RFC: Match expression v2"](https://wiki.php.net/rfc/match_expression_v2). *wiki.php.net*. Retrieved 2020-11-29.

1. **[^](#cite_ref-16)** Garfield, Larry; Tovilo, Ilija (2020-12-04). ["PHP RFC: Enumerations"](https://wiki.php.net/rfc/enumerations). *wiki.php.net*. Retrieved 2026-05-11.

1. **[^](#cite_ref-17)** Garfield, Larry; Tovilo, Ilija (2020-11-11). ["PHP RFC: Pattern Matching"](https://wiki.php.net/rfc/pattern-matching). *wiki.php.net*. Retrieved 2026-05-11.

1. **[^](#cite_ref-Project_Verona_18-0)** Tung, Liam. ["Microsoft opens up Rust-inspired Project Verona programming language on GitHub"](https://www.zdnet.com/article/microsoft-opens-up-rust-inspired-project-verona-programming-language-on-github/). *[ZDNET](/source/ZDNET)*. [Archived](https://web.archive.org/web/20200117143852/https://www.zdnet.com/article/microsoft-opens-up-rust-inspired-project-verona-programming-language-on-github/) from the original on 2020-01-17. Retrieved 2020-01-17.

1. **[^](#cite_ref-Jaloyan_19-0)** Jaloyan, Georges-Axel (2017-10-19). "Safe Pointers in SPARK 2014". [arXiv](/source/ArXiv_(identifier)):[1710.07047](https://arxiv.org/abs/1710.07047) [[cs.PL](https://arxiv.org/archive/cs.PL)].

1. **[^](#cite_ref-Lattner_20-0)** Lattner, Chris. ["Chris Lattner's Homepage"](http://nondot.org/sabre/). *Nondot*. [Archived](https://web.archive.org/web/20181225175312/http://nondot.org/sabre/) from the original on 2018-12-25. Retrieved 2019-05-14.

1. **[^](#cite_ref-21)** ["V documentation (Introduction)"](https://github.com/vlang/v/blob/master/doc/docs.md#introduction). *[GitHub](/source/GitHub)*. The V Programming Language. Retrieved 2023-11-04.

1. **[^](#cite_ref-22)** Yegulalp, Serdar (2016-08-29). ["New challenger joins Rust to topple C language"](https://www.infoworld.com/article/3113083/new-challenger-joins-rust-to-upend-c-language.html). *[InfoWorld](/source/InfoWorld)*. [Archived](https://web.archive.org/web/20211125104022/https://www.infoworld.com/article/3113083/new-challenger-joins-rust-to-upend-c-language.html) from the original on 2021-11-25. Retrieved 2022-10-19.

1. **[^](#cite_ref-Gleam_23-0)** ["Gleam for Rust users"](https://gleam.run/cheatsheets/gleam-for-rust-users/). [Archived](https://web.archive.org/web/20260127121406/https://gleam.run/cheatsheets/gleam-for-rust-users/) from the original on 2026-01-27. Retrieved 2026-01-27.

1. ^ [***a***](#cite_ref-MITTechReview_24-0) [***b***](#cite_ref-MITTechReview_24-1) [***c***](#cite_ref-MITTechReview_24-2) [***d***](#cite_ref-MITTechReview_24-3) [***e***](#cite_ref-MITTechReview_24-4) [***f***](#cite_ref-MITTechReview_24-5) [***g***](#cite_ref-MITTechReview_24-6) [***h***](#cite_ref-MITTechReview_24-7) [***i***](#cite_ref-MITTechReview_24-8) [***j***](#cite_ref-MITTechReview_24-9) [***k***](#cite_ref-MITTechReview_24-10) [***l***](#cite_ref-MITTechReview_24-11) [***m***](#cite_ref-MITTechReview_24-12) [***n***](#cite_ref-MITTechReview_24-13) [***o***](#cite_ref-MITTechReview_24-14) [***p***](#cite_ref-MITTechReview_24-15) [***q***](#cite_ref-MITTechReview_24-16) [***r***](#cite_ref-MITTechReview_24-17) [***s***](#cite_ref-MITTechReview_24-18) Thompson, Clive (2023-02-14). ["How Rust went from a side project to the world's most-loved programming language"](https://www.technologyreview.com/2023/02/14/1067869/rust-worlds-fastest-growing-programming-language/). *MIT Technology Review*. [Archived](https://web.archive.org/web/20240919102849/https://www.technologyreview.com/2023/02/14/1067869/rust-worlds-fastest-growing-programming-language/) from the original on 2024-09-19. Retrieved 2023-02-23.

1. ^ [***a***](#cite_ref-Klabnik2016ACMHistory_25-0) [***b***](#cite_ref-Klabnik2016ACMHistory_25-1) [***c***](#cite_ref-Klabnik2016ACMHistory_25-2) [***d***](#cite_ref-Klabnik2016ACMHistory_25-3) [***e***](#cite_ref-Klabnik2016ACMHistory_25-4) [***f***](#cite_ref-Klabnik2016ACMHistory_25-5) [***g***](#cite_ref-Klabnik2016ACMHistory_25-6) [***h***](#cite_ref-Klabnik2016ACMHistory_25-7) [***i***](#cite_ref-Klabnik2016ACMHistory_25-8) [***j***](#cite_ref-Klabnik2016ACMHistory_25-9) [***k***](#cite_ref-Klabnik2016ACMHistory_25-10) [***l***](#cite_ref-Klabnik2016ACMHistory_25-11) [***m***](#cite_ref-Klabnik2016ACMHistory_25-12) [***n***](#cite_ref-Klabnik2016ACMHistory_25-13) [***o***](#cite_ref-Klabnik2016ACMHistory_25-14) [***p***](#cite_ref-Klabnik2016ACMHistory_25-15) [***q***](#cite_ref-Klabnik2016ACMHistory_25-16) [***r***](#cite_ref-Klabnik2016ACMHistory_25-17) [***s***](#cite_ref-Klabnik2016ACMHistory_25-18) [***t***](#cite_ref-Klabnik2016ACMHistory_25-19) [***u***](#cite_ref-Klabnik2016ACMHistory_25-20) Klabnik, Steve (2016-06-02). ["The History of Rust"](https://dl.acm.org/doi/10.1145/2959689.2960081). *Applicative 2016*. New York, NY, USA: Association for Computing Machinery. p. 80. [doi](/source/Doi_(identifier)):[10.1145/2959689.2960081](https://doi.org/10.1145%2F2959689.2960081). [ISBN](/source/ISBN_(identifier)) [978-1-4503-4464-7](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4503-4464-7).

1. ^ [***a***](#cite_ref-Hoare2010_26-0) [***b***](#cite_ref-Hoare2010_26-1) [***c***](#cite_ref-Hoare2010_26-2) [***d***](#cite_ref-Hoare2010_26-3) Hoare, Graydon (July 2010). [*Project Servo: Technology from the past come to save the future from itself*](http://web.archive.org/web/20260331010652/http://venge.net/graydon/talks/intro-talk-2.pdf) (PDF). Mozilla Annual Summit. Archived from [the original](http://venge.net/graydon/talks/intro-talk-2.pdf) (PDF) on 2026-03-31. Retrieved 2024-10-29.

1. **[^](#cite_ref-OCamlCompiler_27-0)** Hoare, Graydon (November 2016). ["Rust Prehistory (Archive of the original Rust OCaml compiler source code)"](https://github.com/graydon/rust-prehistory/tree/master). *[GitHub](/source/GitHub)*. Retrieved 2024-10-29.

1. **[^](#cite_ref-Rust0.1_28-0)** ["0.1 first supported public release Milestone · rust-lang/rust"](https://github.com/rust-lang/rust/milestone/3?closed=1). *[GitHub](/source/GitHub)*. Retrieved 2024-10-29.

1. **[^](#cite_ref-Nelson2022RustConf_29-0)** Nelson, Jynn (2022-08-05). [*RustConf 2022 - Bootstrapping: The once and future compiler*](https://www.youtube.com/watch?v=oUIjG-y4zaA). Portland, Oregon: Rust Team. Retrieved 2024-10-29 – via YouTube.

1. **[^](#cite_ref-31)** ["Rust logo"](https://bugzilla.mozilla.org/show_bug.cgi?id=680521). *[Bugzilla](/source/Bugzilla)*. [Archived](https://web.archive.org/web/20240202045212/https://bugzilla.mozilla.org/show_bug.cgi?id=680521) from the original on 2024-02-02. Retrieved 2024-02-02.

1. **[^](#cite_ref-Rust0.1a_32-0)** Anderson, Brian (2012-01-24). ["\[rust-dev\] The Rust compiler 0.1 is unleashed"](https://web.archive.org/web/20120124160628/https://mail.mozilla.org/pipermail/rust-dev/2012-January/001256.html). *rust-dev* (Mailing list). Archived from [the original](https://mail.mozilla.org/pipermail/rust-dev/2012-January/001256.html) on 2012-01-24. Retrieved 2025-01-07.

1. **[^](#cite_ref-ExtremeTechRust0.1_33-0)** Anthony, Sebastian (2012-01-24). ["Mozilla releases Rust 0.1, the language that will eventually usurp Firefox's C++"](https://www.extremetech.com/internet/115207-mozilla-releases-rust-0-1-the-language-that-will-eventually-usurp-firefoxs-c). *ExtremeTech*. Retrieved 2025-01-07.

1. **[^](#cite_ref-34)** ["Purity by pcwalton · Pull Request #5412 · rust-lang/rust"](https://github.com/rust-lang/rust/pull/5412). *[GitHub](/source/GitHub)*. Retrieved 2024-10-29.

1. **[^](#cite_ref-35)** Binstock, Andrew (2014-01-07). ["The Rise And Fall of Languages in 2013"](https://web.archive.org/web/20160807075745/http://www.drdobbs.com/jvm/the-rise-and-fall-of-languages-in-2013/240165192). *[Dr. Dobb's Journal](/source/Dr._Dobb's_Journal)*. Archived from [the original](https://www.drdobbs.com/jvm/the-rise-and-fall-of-languages-in-2013/240165192) on 2016-08-07. Retrieved 2022-11-20.

1. **[^](#cite_ref-36)** Lardinois, Frederic (2015-04-03). ["Mozilla And Samsung Team Up To Develop Servo, Mozilla's Next-Gen Browser Engine For Multicore Processors"](https://techcrunch.com/2013/04/03/mozilla-and-samsung-collaborate-on-servo-mozillas-next-gen-browser-engine-for-tomorrows-multicore-processors/). *[TechCrunch](/source/TechCrunch)*. [Archived](https://web.archive.org/web/20160910211537/https://techcrunch.com/2013/04/03/mozilla-and-samsung-collaborate-on-servo-mozillas-next-gen-browser-engine-for-tomorrows-multicore-processors/) from the original on 2016-09-10. Retrieved 2017-06-25.

1. **[^](#cite_ref-37)** ["Firefox 45.0, See All New Features, Updates and Fixes"](https://www.mozilla.org/en-US/firefox/45.0/releasenotes/). *Mozilla*. [Archived](https://web.archive.org/web/20160317215950/https://www.mozilla.org/en-US/firefox/45.0/releasenotes/) from the original on 2016-03-17. Retrieved 2024-10-31.

1. **[^](#cite_ref-38)** Lardinois, Frederic (2017-09-29). ["It's time to give Firefox another chance"](https://techcrunch.com/2017/09/29/its-time-to-give-firefox-another-chance/). *[TechCrunch](/source/TechCrunch)*. [Archived](https://web.archive.org/web/20230815025149/https://techcrunch.com/2017/09/29/its-time-to-give-firefox-another-chance/) from the original on 2023-08-15. Retrieved 2023-08-15.

1. **[^](#cite_ref-2017PortugalEnergyStudy_39-0)** Pereira, Rui; Couto, Marco; Ribeiro, Francisco; Rua, Rui; Cunha, Jácome; Fernandes, João Paulo; Saraiva, João (2017-10-23). ["Energy efficiency across programming languages: How do energy, time, and memory relate?"](https://dl.acm.org/doi/10.1145/3136014.3136031). [*Proceedings of the 10th ACM SIGPLAN International Conference on Software Language Engineering*](http://repositorio.inesctec.pt/handle/123456789/5492). SLE 2017. New York, NY, USA: Association for Computing Machinery. pp. 256–267. [doi](/source/Doi_(identifier)):[10.1145/3136014.3136031](https://doi.org/10.1145%2F3136014.3136031). [hdl](/source/Hdl_(identifier)):[1822/65359](https://hdl.handle.net/1822%2F65359). [ISBN](/source/ISBN_(identifier)) [978-1-4503-5525-4](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4503-5525-4).

1. **[^](#cite_ref-40)** Cimpanu, Catalin (2020-08-11). ["Mozilla lays off 250 employees while it refocuses on commercial products"](https://www.zdnet.com/article/mozilla-lays-off-250-employees-while-it-refocuses-on-commercial-products/). *[ZDNET](/source/ZDNET)*. [Archived](https://web.archive.org/web/20220318025804/https://www.zdnet.com/article/mozilla-lays-off-250-employees-while-it-refocuses-on-commercial-products/) from the original on 2022-03-18. Retrieved 2020-12-02.

1. **[^](#cite_ref-41)** Cooper, Daniel (2020-08-11). ["Mozilla lays off 250 employees due to the pandemic"](https://www.engadget.com/mozilla-firefox-250-employees-layoffs-151324924.html). *[Engadget](/source/Engadget)*. [Archived](https://web.archive.org/web/20201213020220/https://www.engadget.com/mozilla-firefox-250-employees-layoffs-151324924.html) from the original on 2020-12-13. Retrieved 2020-12-02.

1. **[^](#cite_ref-42)** Tung, Liam (2020-08-21). ["Programming language Rust: Mozilla job cuts have hit us badly but here's how we'll survive"](https://www.zdnet.com/article/programming-language-rust-mozilla-job-cuts-have-hit-us-badly-but-heres-how-well-survive/). *[ZDNET](/source/ZDNET)*. [Archived](https://web.archive.org/web/20220421083509/https://www.zdnet.com/article/programming-language-rust-mozilla-job-cuts-have-hit-us-badly-but-heres-how-well-survive/) from the original on 2022-04-21. Retrieved 2022-04-21.

1. **[^](#cite_ref-43)** ["Laying the foundation for Rust's future"](https://blog.rust-lang.org/2020/08/18/laying-the-foundation-for-rusts-future.html). *Rust Blog*. 2020-08-18. [Archived](https://web.archive.org/web/20201202022933/https://blog.rust-lang.org/2020/08/18/laying-the-foundation-for-rusts-future.html) from the original on 2020-12-02. Retrieved 2020-12-02.

1. **[^](#cite_ref-44)** ["Hello World!"](https://foundation.rust-lang.org/news/2021-02-08-hello-world/). *Rust Foundation*. 2020-02-08. [Archived](https://web.archive.org/web/20220419124635/https://foundation.rust-lang.org/news/2021-02-08-hello-world/) from the original on 2022-04-19. Retrieved 2022-06-04.

1. **[^](#cite_ref-45)** ["Mozilla Welcomes the Rust Foundation"](https://blog.mozilla.org/blog/2021/02/08/mozilla-welcomes-the-rust-foundation). *Mozilla Blog*. 2021-02-09. [Archived](https://web.archive.org/web/20210208212031/https://blog.mozilla.org/blog/2021/02/08/mozilla-welcomes-the-rust-foundation/) from the original on 2021-02-08. Retrieved 2021-02-09.

1. **[^](#cite_ref-46)** Amadeo, Ron (2021-04-07). ["Google is now writing low-level Android code in Rust"](https://arstechnica.com/gadgets/2021/04/google-is-now-writing-low-level-android-code-in-rust/). *Ars Technica*. [Archived](https://web.archive.org/web/20210408001446/https://arstechnica.com/gadgets/2021/04/google-is-now-writing-low-level-android-code-in-rust/) from the original on 2021-04-08. Retrieved 2021-04-08.

1. **[^](#cite_ref-moderation_47-0)** Anderson, Tim (2021-11-23). ["Entire Rust moderation team resigns"](https://www.theregister.com/2021/11/23/rust_moderation_team_quits/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20220714093245/https://www.theregister.com/2021/11/23/rust_moderation_team_quits/) from the original on 2022-07-14. Retrieved 2022-08-04.

1. **[^](#cite_ref-48)** Levick, Ryan; Bos, Mara. ["Governance Update"](https://blog.rust-lang.org/inside-rust/2022/05/19/governance-update.html). *Inside Rust Blog*. [Archived](https://web.archive.org/web/20221027030926/https://blog.rust-lang.org/inside-rust/2022/05/19/governance-update.html) from the original on 2022-10-27. Retrieved 2022-10-27.

1. ^ [***a***](#cite_ref-ApologizesTrademarkPolicy_49-0) [***b***](#cite_ref-ApologizesTrademarkPolicy_49-1) Claburn, Thomas (2023-04-17). ["Rust Foundation apologizes for trademark policy confusion"](https://www.theregister.com/2023/04/17/rust_foundation_apologizes_trademark_policy/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20230507053637/https://www.theregister.com/2023/04/17/rust_foundation_apologizes_trademark_policy/) from the original on 2023-05-07. Retrieved 2023-05-07.

1. **[^](#cite_ref-50)** Proven, Liam (2019-11-27). ["Rebecca Rumbul named new CEO of The Rust Foundation"](https://www.theregister.com/2021/11/19/rust_foundation_ceo/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20220714110957/https://www.theregister.com/2021/11/19/rust_foundation_ceo/) from the original on 2022-07-14. Retrieved 2022-07-14. Both are curly bracket languages, with C-like syntax that makes them unintimidating for C programmers.

1. ^ [***a***](#cite_ref-:4_51-0) [***b***](#cite_ref-:4_51-1) [***c***](#cite_ref-:4_51-2) Vigliarolo, Brandon (2021-02-10). ["The Rust programming language now has its own independent foundation"](https://web.archive.org/web/20230320172900/https://www.techrepublic.com/article/the-rust-programming-language-now-has-its-own-independent-foundation/). *[TechRepublic](/source/TechRepublic)*. Archived from [the original](https://www.techrepublic.com/article/the-rust-programming-language-now-has-its-own-independent-foundation/) on 2023-03-20. Retrieved 2022-07-14.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019263_52-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), p. 263.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols20195–6_53-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 5–6.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202332_54-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), p. 32.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202332–33_55-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 32–33.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202349–50_56-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 49–50.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202334–36_57-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 34–36.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols20236,_47,_53_58-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 6, 47, 53.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202347–48_59-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 47–48.

1. ^ [***a***](#cite_ref-FOOTNOTEKlabnikNichols202350–53_60-0) [***b***](#cite_ref-FOOTNOTEKlabnikNichols202350–53_60-1) [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 50–53.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202356_61-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), p. 56.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202357–58_62-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 57–58.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202354–56_63-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 54–56.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019104–109_64-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 104–109.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201924_65-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 24.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201936–38_66-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 36–38.

1. **[^](#cite_ref-67)** ["isize"](https://doc.rust-lang.org/stable/std/primitive.isize.html). *doc.rust-lang.org*. Retrieved 2025-09-28.

1. **[^](#cite_ref-68)** ["usize"](https://doc.rust-lang.org/stable/std/primitive.usize.html). *doc.rust-lang.org*. Retrieved 2025-09-28.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202336–38_69-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 36–38.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023502_70-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), p. 502.

1. **[^](#cite_ref-71)** ["Primitive Type char"](https://doc.rust-lang.org/std/primitive.char.html). *The Rust Standard Library documentation*. Retrieved 2025-09-07.

1. **[^](#cite_ref-72)** ["Glossary of Unicode Terms"](https://www.unicode.org/glossary/). *[Unicode Consortium](/source/Unicode_Consortium)*. [Archived](https://web.archive.org/web/20180924092749/http://www.unicode.org/glossary/) from the original on 2018-09-24. Retrieved 2024-07-30.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201938–40_73-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 38–40.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202340–42_74-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 40–42.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202342_75-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), p. 42.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201959–61_76-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 59–61.

1. ^ [***a***](#cite_ref-FOOTNOTEKlabnikNichols201963–68_77-0) [***b***](#cite_ref-FOOTNOTEKlabnikNichols201963–68_77-1) [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 63–68.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201974–75_78-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 74–75.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202371–72_79-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 71–72.

1. ^ [***a***](#cite_ref-BeyondSafety_80-0) [***b***](#cite_ref-BeyondSafety_80-1) Balasubramanian, Abhiram; Baranowski, Marek S.; Burtsev, Anton; Panda, Aurojit; Rakamarić, Zvonimir; Ryzhyk, Leonid (2017-05-07). ["System Programming in Rust"](https://doi.org/10.1145/3102980.3103006). *Proceedings of the 16th Workshop on Hot Topics in Operating Systems*. HotOS '17. New York, NY, US: Association for Computing Machinery. pp. 156–161. [doi](/source/Doi_(identifier)):[10.1145/3102980.3103006](https://doi.org/10.1145%2F3102980.3103006). [ISBN](/source/ISBN_(identifier)) [978-1-4503-5068-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4503-5068-6). [S2CID](/source/S2CID_(identifier)) [24100599](https://api.semanticscholar.org/CorpusID:24100599). [Archived](https://web.archive.org/web/20220611034046/https://dl.acm.org/doi/10.1145/3102980.3103006) from the original on 2022-06-11. Retrieved 2022-06-01.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023327–30_81-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 327–30.

1. **[^](#cite_ref-82)** ["Lifetimes"](https://doc.rust-lang.org/rust-by-example/scope/lifetime.html). *Rust by Example*. [Archived](https://web.archive.org/web/20241116192422/https://doc.rust-lang.org/rust-by-example/scope/lifetime.html) from the original on 2024-11-16. Retrieved 2024-10-29.

1. **[^](#cite_ref-83)** ["Explicit annotation"](https://doc.rust-lang.org/rust-by-example/scope/lifetime/explicit.html). *Rust by Example*. Retrieved 2024-10-29.

1. ^ [***a***](#cite_ref-FOOTNOTEKlabnikNichols2019194_84-0) [***b***](#cite_ref-FOOTNOTEKlabnikNichols2019194_84-1) [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), p. 194.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201975,_134_85-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 75, 134.

1. **[^](#cite_ref-86)** Shamrell-Harrington, Nell (2022-04-15). ["The Rust Borrow Checker – a Deep Dive"](https://www.infoq.com/presentations/rust-borrow-checker/). *InfoQ*. [Archived](https://web.archive.org/web/20220625140128/https://www.infoq.com/presentations/rust-borrow-checker/) from the original on 2022-06-25. Retrieved 2022-06-25.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019194–195_87-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 194–195.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023208–12_88-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 208–12.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023[httpsdocrust-langorgbookch04-02-references-and-borrowinghtml_4.2._References_and_Borrowing]_89-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), [4.2. References and Borrowing](https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html).

1. **[^](#cite_ref-Pearce_90-0)** Pearce, David (2021-04-17). ["A Lightweight Formalism for Reference Lifetimes and Borrowing in Rust"](https://dl.acm.org/doi/10.1145/3443420). *ACM Transactions on Programming Languages and Systems*. **43**: 1–73. [doi](/source/Doi_(identifier)):[10.1145/3443420](https://doi.org/10.1145%2F3443420). [Archived](https://web.archive.org/web/20240415053627/https://dl.acm.org/doi/10.1145/3443420) from the original on 2024-04-15. Retrieved 2024-12-11.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201983_91-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), p. 83.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201997_92-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), p. 97.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201998–101_93-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 98–101.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019438–440_94-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 438–440.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201993_95-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 93.

1. **[^](#cite_ref-FOOTNOTEGjengset2021213–215_96-0)** [Gjengset 2021](#CITEREFGjengset2021), pp. 213–215.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023108–110,_113–114,_116–117_97-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 108–110, 113–114, 116–117.

1. **[^](#cite_ref-Rust_error_handling_98-0)** ["Rust error handling is perfect actually"](https://bitfieldconsulting.com/posts/rust-errors-option-result). *Bitfield Consulting*. 2024-05-27. [Archived](https://web.archive.org/web/20250807061432/https://bitfieldconsulting.com/posts/rust-errors-option-result) from the original on 2025-08-07. Retrieved 2025-09-15.

1. **[^](#cite_ref-FOOTNOTEGjengset2021155-156_99-0)** [Gjengset 2021](#CITEREFGjengset2021), p. 155-156.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023421–423_100-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 421–423.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019418–427_101-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 418–427.

1. **[^](#cite_ref-102)** ["Casting"](https://doc.rust-lang.org/rust-by-example/types/cast.html). *Rust by Example*. Retrieved 2025-04-01.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023378_103-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), p. 378.

1. ^ [***a***](#cite_ref-FOOTNOTEKlabnikNichols2023192–198_104-0) [***b***](#cite_ref-FOOTNOTEKlabnikNichols2023192–198_104-1) [***c***](#cite_ref-FOOTNOTEKlabnikNichols2023192–198_104-2) [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 192–198.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols202398_105-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), p. 98.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019171–172,_205_106-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 171–172, 205.

1. ^ [***a***](#cite_ref-FOOTNOTEKlabnikNichols2023191–192_107-0) [***b***](#cite_ref-FOOTNOTEKlabnikNichols2023191–192_107-1) [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 191–192.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019441–442_108-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 441–442.

1. **[^](#cite_ref-FOOTNOTEGjengset202125_109-0)** [Gjengset 2021](#CITEREFGjengset2021), p. 25.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023[httpsdocrust-langorgbookch18-02-trait-objectshtml_18.2._Using_Trait_Objects_That_Allow_for_Values_of_Different_Types]_110-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), [18.2. Using Trait Objects That Allow for Values of Different Types](https://doc.rust-lang.org/book/ch18-02-trait-objects.html).

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019379–380_111-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 379–380.

1. **[^](#cite_ref-112)** ["RAII"](https://doc.rust-lang.org/rust-by-example/scope/raii.html). *Rust by Example*. [Archived](https://web.archive.org/web/20190421131142/https://doc.rust-lang.org/rust-by-example/scope/raii.html) from the original on 2019-04-21. Retrieved 2020-11-22.

1. **[^](#cite_ref-113)** ["Abstraction without overhead: traits in Rust"](https://blog.rust-lang.org/2015/05/11/traits.html). *Rust Blog*. [Archived](https://web.archive.org/web/20210923101530/https://blog.rust-lang.org/2015/05/11/traits.html) from the original on 2021-09-23. Retrieved 2021-10-19.

1. **[^](#cite_ref-114)** ["Box, stack and heap"](https://doc.rust-lang.org/stable/rust-by-example/std/box.html). *Rust by Example*. [Archived](https://web.archive.org/web/20220531114141/https://doc.rust-lang.org/stable/rust-by-example/std/box.html) from the original on 2022-05-31. Retrieved 2022-06-13.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols201970–75_115-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 70–75.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019323_116-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), p. 323.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023420–429_117-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 420–429.

1. **[^](#cite_ref-FOOTNOTEMcNamara2021139,_376–379,_395_118-0)** [McNamara 2021](#CITEREFMcNamara2021), p. 139, 376–379, 395.

1. ^ [***a***](#cite_ref-UnsafeRustUse_119-0) [***b***](#cite_ref-UnsafeRustUse_119-1) Astrauskas, Vytautas; Matheja, Christoph; Poli, Federico; Müller, Peter; Summers, Alexander J. (2020-11-13). ["How do programmers use unsafe rust?"](https://dl.acm.org/doi/10.1145/3428204). *Proceedings of the ACM on Programming Languages*. **4**: 1–27. [doi](/source/Doi_(identifier)):[10.1145/3428204](https://doi.org/10.1145%2F3428204). [hdl](/source/Hdl_(identifier)):[20.500.11850/465785](https://hdl.handle.net/20.500.11850%2F465785). [ISSN](/source/ISSN_(identifier)) [2475-1421](https://search.worldcat.org/issn/2475-1421).

1. **[^](#cite_ref-120)** Lattuada, Andrea; Hance, Travis; Cho, Chanhee; Brun, Matthias; Subasinghe, Isitha; Zhou, Yi; Howell, Jon; Parno, Bryan; Hawblitzel, Chris (2023-04-06). ["Verus: Verifying Rust Programs using Linear Ghost Types"](https://dl.acm.org/doi/10.1145/3586037). *Proceedings of the ACM on Programming Languages*. **7**: 85:286–85:315. [doi](/source/Doi_(identifier)):[10.1145/3586037](https://doi.org/10.1145%2F3586037). [hdl](/source/Hdl_(identifier)):[20.500.11850/610518](https://hdl.handle.net/20.500.11850%2F610518).

1. **[^](#cite_ref-121)** Milano, Mae; Turcotti, Julia; Myers, Andrew C. (2022-06-09). "A flexible type system for fearless concurrency". *Proceedings of the 43rd ACM SIGPLAN International Conference on Programming Language Design and Implementation*. New York, NY, USA: Association for Computing Machinery. pp. 458–473. [doi](/source/Doi_(identifier)):[10.1145/3519939.3523443](https://doi.org/10.1145%2F3519939.3523443). [ISBN](/source/ISBN_(identifier)) [978-1-4503-9265-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4503-9265-5).

1. **[^](#cite_ref-122)** ["Introduction - Learning Rust With Entirely Too Many Linked Lists"](https://rust-unofficial.github.io/too-many-lists/). *rust-unofficial.github.io*. Retrieved 2025-08-06.

1. **[^](#cite_ref-123)** Noble, James; Mackay, Julian; Wrigstad, Tobias (2023-10-16). ["Rusty Links in Local Chains✱"](https://doi.org/10.1145/3611096.3611097). *Proceedings of the 24th ACM International Workshop on Formal Techniques for Java-like Programs*. New York, NY, USA: Association for Computing Machinery. pp. 1–3. [doi](/source/Doi_(identifier)):[10.1145/3611096.3611097](https://doi.org/10.1145%2F3611096.3611097). [ISBN](/source/ISBN_(identifier)) [979-8-4007-0784-1](https://en.wikipedia.org/wiki/Special:BookSources/979-8-4007-0784-1).

1. ^ [***a***](#cite_ref-IsRustSafely_124-0) [***b***](#cite_ref-IsRustSafely_124-1) Evans, Ana Nora; Campbell, Bradford; Soffa, Mary Lou (2020-10-01). ["Is rust used safely by software developers?"](https://doi.org/10.1145/3377811.3380413). *Proceedings of the ACM/IEEE 42nd International Conference on Software Engineering*. New York, NY, USA: Association for Computing Machinery. pp. 246–257. [arXiv](/source/ArXiv_(identifier)):[2007.00752](https://arxiv.org/abs/2007.00752). [doi](/source/Doi_(identifier)):[10.1145/3377811.3380413](https://doi.org/10.1145%2F3377811.3380413). [ISBN](/source/ISBN_(identifier)) [978-1-4503-7121-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4503-7121-6).

1. **[^](#cite_ref-125)** ["Behavior considered undefined"](https://doc.rust-lang.org/reference/behavior-considered-undefined.html). *The Rust Reference*. Retrieved 2025-08-06.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023449–455_126-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 449–455.

1. **[^](#cite_ref-FOOTNOTEGjengset2021101–102_127-0)** [Gjengset 2021](#CITEREFGjengset2021), pp. 101–102.

1. **[^](#cite_ref-Rust_Ref._–_Macros_By_Example_128-0)** ["Macros By Example"](https://doc.rust-lang.org/reference/macros-by-example.html). *The Rust Reference*. [Archived](https://web.archive.org/web/20230421052332/https://doc.rust-lang.org/reference/macros-by-example.html) from the original on 2023-04-21. Retrieved 2023-04-21.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019446–448_129-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 446–448.

1. **[^](#cite_ref-rust-procedural-macros_130-0)** ["Procedural Macros"](https://doc.rust-lang.org/reference/procedural-macros.html). *The Rust Programming Language Reference*. [Archived](https://web.archive.org/web/20201107233444/https://doc.rust-lang.org/reference/procedural-macros.html) from the original on 2020-11-07. Retrieved 2021-03-23.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019449–455_131-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 449–455.

1. **[^](#cite_ref-132)** Baumgartner, Stefan (2025-05-23). ["Programming language: Rust 2024 is the most comprehensive edition to date"](https://www.heise.de/en/background/Programming-language-Rust-2024-is-the-most-comprehensive-edition-to-date-10393917.html). *[heise online](/source/Heise_online)*. Retrieved 2025-06-28.

1. ^ [***a***](#cite_ref-FOOTNOTEGjengset2021193–209_134-0) [***b***](#cite_ref-FOOTNOTEGjengset2021193–209_134-1) [***c***](#cite_ref-FOOTNOTEGjengset2021193–209_134-2) [Gjengset 2021](#CITEREFGjengset2021), pp. 193–209.

1. **[^](#cite_ref-135)** ["Safe Interoperability between Rust and C++ with CXX"](https://www.infoq.com/news/2020/12/cpp-rust-interop-cxx/). *InfoQ*. 2020-12-06. [Archived](https://web.archive.org/web/20210122142035/https://www.infoq.com/news/2020/12/cpp-rust-interop-cxx/) from the original on 2021-01-22. Retrieved 2021-01-03.

1. **[^](#cite_ref-cnet_136-0)** Rosenblatt, Seth (2013-04-03). ["Samsung joins Mozilla's quest for Rust"](https://reviews.cnet.com/8301-3514_7-57577639/samsung-joins-mozillas-quest-for-rust/). [CNET](/source/CNET). [Archived](https://web.archive.org/web/20130404142333/http://reviews.cnet.com/8301-3514_7-57577639/samsung-joins-mozillas-quest-for-rust/) from the original on 2013-04-04. Retrieved 2013-04-05.

1. **[^](#cite_ref-lwn_137-0)** Brown, Neil (2013-04-17). ["A taste of Rust"](https://lwn.net/Articles/547145/). *[LWN.net](/source/LWN.net)*. [Archived](https://web.archive.org/web/20130426010754/http://lwn.net/Articles/547145/) from the original on 2013-04-26. Retrieved 2013-04-25.

1. **[^](#cite_ref-The_Rustonomicon_138-0)** ["Races"](https://doc.rust-lang.org/nomicon/races.html). *The Rustonomicon*. [Archived](https://web.archive.org/web/20170710194643/https://doc.rust-lang.org/nomicon/races.html) from the original on 2017-07-10. Retrieved 2017-07-03.

1. **[^](#cite_ref-Sensors_139-0)** Vandervelden, Thibaut; De Smet, Ruben; Deac, Diana; Steenhaut, Kris; Braeken, An (2024-09-07). ["Overview of Embedded Rust Operating Systems and Frameworks"](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC11398098). *Sensors*. **24** (17): 5818. [Bibcode](/source/Bibcode_(identifier)):[2024Senso..24.5818V](https://ui.adsabs.harvard.edu/abs/2024Senso..24.5818V). [doi](/source/Doi_(identifier)):[10.3390/s24175818](https://doi.org/10.3390%2Fs24175818). [PMC](/source/PMC_(identifier)) [11398098](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC11398098). [PMID](/source/PMID_(identifier)) [39275729](https://pubmed.ncbi.nlm.nih.gov/39275729).

1. ^ [***a***](#cite_ref-FOOTNOTEKlabnikNichols2023343–346_140-0) [***b***](#cite_ref-FOOTNOTEKlabnikNichols2023343–346_140-1) [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), pp. 343–346.

1. **[^](#cite_ref-FOOTNOTEGjengset20216_141-0)** [Gjengset 2021](#CITEREFGjengset2021), p. 6.

1. **[^](#cite_ref-FOOTNOTEBlandyOrendorffTindall20216–8_142-0)** [Blandy, Orendorff & Tindall 2021](#CITEREFBlandyOrendorffTindall2021), pp. 6–8.

1. **[^](#cite_ref-143)** ["Overview of the compiler"](https://rustc-dev-guide.rust-lang.org/overview.html). *Rust Compiler Development Guide*. Rust project contributors. [Archived](https://web.archive.org/web/20230531035222/https://rustc-dev-guide.rust-lang.org/overview.html) from the original on 2023-05-31. Retrieved 2024-11-07.

1. **[^](#cite_ref-144)** ["Code Generation"](https://rustc-dev-guide.rust-lang.org/backend/codegen.html). *Rust Compiler Development Guide*. Rust project contributors. Retrieved 2024-03-03.

1. **[^](#cite_ref-145)** ["rust-lang/rustc_codegen_gcc"](https://github.com/rust-lang/rustc_codegen_gcc#Motivation). *[GitHub](/source/GitHub)*. The Rust Programming Language. 2024-03-02. Retrieved 2024-03-03.

1. **[^](#cite_ref-146)** ["rust-lang/rustc_codegen_cranelift"](https://github.com/rust-lang/rustc_codegen_cranelift). *[GitHub](/source/GitHub)*. The Rust Programming Language. 2024-03-02. Retrieved 2024-03-03.

1. ^ [***a***](#cite_ref-Nature_147-0) [***b***](#cite_ref-Nature_147-1) [***c***](#cite_ref-Nature_147-2) Perkel, Jeffrey M. (2020-12-01). ["Why scientists are turning to Rust"](https://www.nature.com/articles/d41586-020-03382-2). *[Nature](/source/Nature_(journal))*. **588** (7836): 185–186. [Bibcode](/source/Bibcode_(identifier)):[2020Natur.588..185P](https://ui.adsabs.harvard.edu/abs/2020Natur.588..185P). [doi](/source/Doi_(identifier)):[10.1038/d41586-020-03382-2](https://doi.org/10.1038%2Fd41586-020-03382-2). [PMID](/source/PMID_(identifier)) [33262490](https://pubmed.ncbi.nlm.nih.gov/33262490). [S2CID](/source/S2CID_(identifier)) [227251258](https://api.semanticscholar.org/CorpusID:227251258). [Archived](https://web.archive.org/web/20220506040523/https://www.nature.com/articles/d41586-020-03382-2) from the original on 2022-05-06. Retrieved 2022-05-15.

1. **[^](#cite_ref-148)** Simone, Sergio De (2019-04-18). ["Rust 1.34 Introduces Alternative Registries for Non-Public Crates"](https://www.infoq.com/news/2019/04/rust-1.34-additional-registries). *InfoQ*. [Archived](https://web.archive.org/web/20220714164454/https://www.infoq.com/news/2019/04/rust-1.34-additional-registries) from the original on 2022-07-14. Retrieved 2022-07-14.

1. **[^](#cite_ref-149)** ["Why Cargo Exists - The Cargo Book"](https://doc.rust-lang.org/cargo/guide/why-cargo-exists.html). *doc.rust-lang.org*. Retrieved 2026-03-22.

1. **[^](#cite_ref-150)** ["Cargo.toml vs Cargo.lock - The Cargo Book"](https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html). *doc.rust-lang.org*. Retrieved 2026-03-22.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2019511–512_151-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), pp. 511–512.

1. **[^](#cite_ref-152)** ["rust-lang/rust-clippy"](https://github.com/rust-lang/rust-clippy). The Rust Programming Language. 2026-01-04. Retrieved 2026-01-04.

1. **[^](#cite_ref-153)** ["Clippy Lints"](https://rust-lang.github.io/rust-clippy/master/index.html). *The Rust Programming Language*. Retrieved 2023-11-30.

1. **[^](#cite_ref-Rust_Book_G_154-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), Appendix G – How Rust is Made and "Nightly Rust"

1. **[^](#cite_ref-FOOTNOTEBlandyOrendorffTindall2021176–177_155-0)** [Blandy, Orendorff & Tindall 2021](#CITEREFBlandyOrendorffTindall2021), pp. 176–177.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols2023623_156-0)** [Klabnik & Nichols 2023](#CITEREFKlabnikNichols2023), p. 623.

1. **[^](#cite_ref-157)** Anderson, Tim (2021-11-30). ["Can Rust save the planet? Why, and why not"](https://www.theregister.com/2021/11/30/aws_reinvent_rust/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20220711001629/https://www.theregister.com/2021/11/30/aws_reinvent_rust/) from the original on 2022-07-11. Retrieved 2022-07-11.

1. **[^](#cite_ref-158)** Yegulalp, Serdar (2021-10-06). ["What is the Rust language? Safe, fast, and easy software development"](https://www.infoworld.com/article/3218074/what-is-rust-safe-fast-and-easy-software-development.html). *[InfoWorld](/source/InfoWorld)*. [Archived](https://web.archive.org/web/20220624101013/https://www.infoworld.com/article/3218074/what-is-rust-safe-fast-and-easy-software-development.html) from the original on 2022-06-24. Retrieved 2022-06-25.

1. **[^](#cite_ref-FOOTNOTEMcNamara202111_159-0)** [McNamara 2021](#CITEREFMcNamara2021), p. 11.

1. ^ [***a***](#cite_ref-SaferAtAnySpeed_160-0) [***b***](#cite_ref-SaferAtAnySpeed_160-1) Popescu, Natalie; Xu, Ziyang; Apostolakis, Sotiris; August, David I.; Levy, Amit (2021-10-15). ["Safer at any speed: automatic context-aware safety enhancement for Rust"](https://doi.org/10.1145%2F3485480). *Proceedings of the ACM on Programming Languages*. **5** (OOPSLA). Section 2. [doi](/source/Doi_(identifier)):[10.1145/3485480](https://doi.org/10.1145%2F3485480). [S2CID](/source/S2CID_(identifier)) [238212612](https://api.semanticscholar.org/CorpusID:238212612). p. 5: We observe a large variance in the overheads of checked indexing: 23.6% of benchmarks do report significant performance hits from checked indexing, but 64.5% report little-to-no impact and, surprisingly, 11.8% report improved performance ... Ultimately, while unchecked indexing can improve performance, most of the time it does not.

1. **[^](#cite_ref-FOOTNOTEMcNamara202119,_27_161-0)** [McNamara 2021](#CITEREFMcNamara2021), p. 19, 27.

1. **[^](#cite_ref-162)** Couprie, Geoffroy (2015). "Nom, A Byte oriented, streaming, Zero copy, Parser Combinators Library in Rust". *2015 IEEE Security and Privacy Workshops*. pp. 142–148. [doi](/source/Doi_(identifier)):[10.1109/SPW.2015.31](https://doi.org/10.1109%2FSPW.2015.31). [ISBN](/source/ISBN_(identifier)) [978-1-4799-9933-0](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4799-9933-0). [S2CID](/source/S2CID_(identifier)) [16608844](https://api.semanticscholar.org/CorpusID:16608844).

1. **[^](#cite_ref-FOOTNOTEMcNamara202120_163-0)** [McNamara 2021](#CITEREFMcNamara2021), p. 20.

1. **[^](#cite_ref-164)** ["Code generation"](https://doc.rust-lang.org/reference/attributes/codegen.html). *The Rust Reference*. [Archived](https://web.archive.org/web/20221009202615/https://doc.rust-lang.org/reference/attributes/codegen.html) from the original on 2022-10-09. Retrieved 2022-10-09.

1. **[^](#cite_ref-how-fast-is-rust_165-0)** ["How Fast Is Rust?"](https://doc.rust-lang.org/1.0.0/complement-lang-faq.html#how-fast-is-rust?). *The Rust Programming Language FAQ*. [Archived](https://web.archive.org/web/20201028102013/https://doc.rust-lang.org/1.0.0/complement-lang-faq.html#how-fast-is-rust?) from the original on 2020-10-28. Retrieved 2019-04-11.

1. **[^](#cite_ref-166)** Farshin, Alireza; Barbette, Tom; Roozbeh, Amir; Maguire, Gerald Q. Jr; Kostić, Dejan (2021). "PacketMill: Toward per-Core 100-GBPS networking". [*Proceedings of the 26th ACM International Conference on Architectural Support for Programming Languages and Operating Systems*](https://dlnext.acm.org/doi/abs/10.1145/3445814.3446724). pp. 1–17. [doi](/source/Doi_(identifier)):[10.1145/3445814.3446724](https://doi.org/10.1145%2F3445814.3446724). [ISBN](/source/ISBN_(identifier)) [9781450383172](https://en.wikipedia.org/wiki/Special:BookSources/9781450383172). [S2CID](/source/S2CID_(identifier)) [231949599](https://api.semanticscholar.org/CorpusID:231949599). [Archived](https://web.archive.org/web/20220712060927/https://dlnext.acm.org/doi/abs/10.1145/3445814.3446724) from the original on 2022-07-12. Retrieved 2022-07-12. ... While some compilers (e.g., Rust) support structure reordering [82], C & C++ compilers are forbidden to reorder data structures (e.g., struct or class) [74] ...

1. **[^](#cite_ref-FOOTNOTEGjengset202122_167-0)** [Gjengset 2021](#CITEREFGjengset2021), p. 22.

1. **[^](#cite_ref-168)** Shankland, Stephen (2016-07-12). ["Firefox will get overhaul in bid to get you interested again"](https://www.cnet.com/tech/services-and-software/firefox-mozilla-gets-overhaul-in-a-bid-to-get-you-interested-again/). [CNET](/source/CNET). [Archived](https://web.archive.org/web/20220714172029/https://www.cnet.com/tech/services-and-software/firefox-mozilla-gets-overhaul-in-a-bid-to-get-you-interested-again/) from the original on 2022-07-14. Retrieved 2022-07-14.

1. **[^](#cite_ref-169)** Security Research Team (2013-10-04). ["ZeroMQ: Helping us Block Malicious Domains in Real Time"](https://web.archive.org/web/20230513161542/https://umbrella.cisco.com/blog/zeromq-helping-us-block-malicious-domains). *Cisco Umbrella*. Archived from [the original](https://umbrella.cisco.com/blog/zeromq-helping-us-block-malicious-domains) on 2023-05-13. Retrieved 2023-05-13.

1. **[^](#cite_ref-170)** Cimpanu, Catalin (2019-10-15). ["AWS to sponsor Rust project"](https://www.zdnet.com/article/aws-to-sponsor-rust-project/). *[ZDNET](/source/ZDNET)*. Retrieved 2024-07-17.

1. **[^](#cite_ref-171)** Nichols, Shaun (2018-06-27). ["Microsoft's next trick? Kicking things out of the cloud to Azure IoT Edge"](https://www.theregister.co.uk/2018/06/27/microsofts_next_cloud_trick_kicking_things_out_of_the_cloud_to_azure_iot_edge/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20190927092433/https://www.theregister.co.uk/2018/06/27/microsofts_next_cloud_trick_kicking_things_out_of_the_cloud_to_azure_iot_edge/) from the original on 2019-09-27. Retrieved 2019-09-27.

1. **[^](#cite_ref-172)** Tung, Liam (2020-04-30). ["Microsoft: Why we used programming language Rust over Go for WebAssembly on Kubernetes app"](https://www.zdnet.com/article/microsoft-why-we-used-programming-language-rust-over-go-for-webassembly-on-kubernetes-app/). *[ZDNET](/source/ZDNET)*. [Archived](https://web.archive.org/web/20220421043549/https://www.zdnet.com/article/microsoft-why-we-used-programming-language-rust-over-go-for-webassembly-on-kubernetes-app/) from the original on 2022-04-21. Retrieved 2022-04-21.

1. **[^](#cite_ref-173)** Claburn, Thomas (2022-09-20). ["In Rust We Trust: Microsoft Azure CTO shuns C and C++"](https://www.theregister.com/2022/09/20/rust_microsoft_c/). *[The Register](/source/The_Register)*. Retrieved 2024-07-07.

1. **[^](#cite_ref-174)** Simone, Sergio De (2019-03-10). ["NPM Adopted Rust to Remove Performance Bottlenecks"](https://www.infoq.com/news/2019/03/rust-npm-performance/). *InfoQ*. [Archived](https://web.archive.org/web/20231119135434/https://www.infoq.com/news/2019/03/rust-npm-performance/) from the original on 2023-11-19. Retrieved 2023-11-20.

1. **[^](#cite_ref-175)** Lyu, Shing (2020). ["Welcome to the World of Rust"](https://doi.org/10.1007/978-1-4842-5599-5_1). In Lyu, Shing (ed.). *Practical Rust Projects: Building Game, Physical Computing, and Machine Learning Applications*. Berkeley, CA: Apress. pp. 1–8. [doi](/source/Doi_(identifier)):[10.1007/978-1-4842-5599-5_1](https://doi.org/10.1007%2F978-1-4842-5599-5_1). [ISBN](/source/ISBN_(identifier)) [978-1-4842-5599-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4842-5599-5). Retrieved 2023-11-29.

1. **[^](#cite_ref-176)** Lyu, Shing (2021). ["Rust in the Web World"](https://doi.org/10.1007/978-1-4842-6589-5_1). In Lyu, Shing (ed.). *Practical Rust Web Projects: Building Cloud and Web-Based Applications*. Berkeley, CA: Apress. pp. 1–7. [doi](/source/Doi_(identifier)):[10.1007/978-1-4842-6589-5_1](https://doi.org/10.1007%2F978-1-4842-6589-5_1). [ISBN](/source/ISBN_(identifier)) [978-1-4842-6589-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4842-6589-5). Retrieved 2023-11-29.

1. ^ [***a***](#cite_ref-UsenixRustForLinux_177-0) [***b***](#cite_ref-UsenixRustForLinux_177-1) Li, Hongyu; Guo, Liwei; Yang, Yexuan; Wang, Shangguang; Xu, Mengwei (2024-06-30). ["An Empirical Study of Rust-for-Linux: The Success, Dissatisfaction, and Compromise"](https://www.usenix.org/publications/loginonline/empirical-study-rust-linux-success-dissatisfaction-and-compromise). *[USENIX](/source/USENIX)*. Retrieved 2024-11-28.

1. **[^](#cite_ref-178)** Corbet, Jonathan (2022-10-13). ["A first look at Rust in the 6.1 kernel"](https://lwn.net/Articles/910762/). *[LWN.net](/source/LWN.net)*. [Archived](https://web.archive.org/web/20231117141103/https://lwn.net/Articles/910762/) from the original on 2023-11-17. Retrieved 2023-11-11.

1. **[^](#cite_ref-179)** Vaughan-Nichols, Steven (2021-12-07). ["Rust takes a major step forward as Linux's second official language"](https://www.zdnet.com/article/rust-takes-a-major-step-forward-as-linuxs-second-official-language/). *[ZDNET](/source/ZDNET)*. Retrieved 2024-11-27.

1. **[^](#cite_ref-180)** Corbet, Jonathan (2025-12-10). ["The (successful) end of the kernel Rust experiment"](https://lwn.net/Articles/1049831/). *LWN.net*. Retrieved 2025-12-10.

1. **[^](#cite_ref-181)** Amadeo, Ron (2021-04-07). ["Google is now writing low-level Android code in Rust"](https://arstechnica.com/gadgets/2021/04/google-is-now-writing-low-level-android-code-in-rust/). *Ars Technica*. [Archived](https://web.archive.org/web/20210408001446/https://arstechnica.com/gadgets/2021/04/google-is-now-writing-low-level-android-code-in-rust/) from the original on 2021-04-08. Retrieved 2022-04-21.

1. **[^](#cite_ref-182)** Darkcrizt (2021-04-02). ["Google Develops New Bluetooth Stack for Android, Written in Rust"](https://web.archive.org/web/20210825165930/https://blog.desdelinux.net/en/google-develops-a-new-bluetooth-stack-for-android-written-in-rust/). *Desde Linux*. Archived from [the original](https://blog.desdelinux.net/en/google-develops-a-new-bluetooth-stack-for-android-written-in-rust/) on 2021-08-25. Retrieved 2024-08-31.

1. **[^](#cite_ref-183)** Claburn, Thomas (2023-04-27). ["Microsoft is rewriting core Windows libraries in Rust"](https://www.theregister.com/2023/04/27/microsoft_windows_rust/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20230513082735/https://www.theregister.com/2023/04/27/microsoft_windows_rust/) from the original on 2023-05-13. Retrieved 2023-05-13.

1. **[^](#cite_ref-184)** Proven, Liam (2023-12-01). ["Small but mighty, 9Front's 'Humanbiologics' is here for the truly curious"](https://www.theregister.com/2023/12/01/9front_humanbiologics/). *[The Register](/source/The_Register)*. Retrieved 2024-03-07.

1. **[^](#cite_ref-185)** Yegulalp, Serdar (2016-03-21). ["Rust's Redox OS could show Linux a few new tricks"](https://web.archive.org/web/20160321192838/http://www.infoworld.com/article/3046100/open-source-tools/rusts-redox-os-could-show-linux-a-few-new-tricks.html). *[InfoWorld](/source/InfoWorld)*. Archived from [the original](http://www.infoworld.com/article/3046100/open-source-tools/rusts-redox-os-could-show-linux-a-few-new-tricks.html) on 2016-03-21. Retrieved 2016-03-21.

1. **[^](#cite_ref-186)** Anderson, Tim (2021-01-14). ["Another Rust-y OS: Theseus joins Redox in pursuit of safer, more resilient systems"](https://www.theregister.com/2021/01/14/rust_os_theseus/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20220714112619/https://www.theregister.com/2021/01/14/rust_os_theseus/) from the original on 2022-07-14. Retrieved 2022-07-14.

1. **[^](#cite_ref-187)** Boos, Kevin; Liyanage, Namitha; Ijaz, Ramla; Zhong, Lin (2020). [*Theseus: an Experiment in Operating System Structure and State Management*](https://www.usenix.org/conference/osdi20/presentation/boos). pp. 1–19. [ISBN](/source/ISBN_(identifier)) [978-1-939133-19-9](https://en.wikipedia.org/wiki/Special:BookSources/978-1-939133-19-9). [Archived](https://web.archive.org/web/20230513164135/https://www.usenix.org/conference/osdi20/presentation/boos) from the original on 2023-05-13. Retrieved 2023-05-13.

1. **[^](#cite_ref-rustmag-1_188-0)** Zhang, HanDong (2023-01-31). ["2022 Review | The adoption of Rust in Business"](https://rustmagazine.org/issue-1/2022-review-the-adoption-of-rust-in-business/). *Rust Magazine*. Retrieved 2023-02-07.

1. **[^](#cite_ref-189)** Sei, Mark (2018-10-10). ["Fedora 29 new features: Startis now officially in Fedora"](https://www.marksei.com/fedora-29-new-features-startis/). *Marksei, Weekly sysadmin pills*. [Archived](https://web.archive.org/web/20190413075055/https://www.marksei.com/fedora-29-new-features-startis/) from the original on 2019-04-13. Retrieved 2019-05-13.

1. **[^](#cite_ref-190)** Proven, Liam (2022-07-12). ["Oracle Linux 9 released, with some interesting additions"](https://www.theregister.com/2022/07/12/oracle_linux_9/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20220714073400/https://www.theregister.com/2022/07/12/oracle_linux_9/) from the original on 2022-07-14. Retrieved 2022-07-14.

1. **[^](#cite_ref-191)** Proven, Liam (2023-02-02). ["System76 teases features coming in homegrown Rust-based desktop COSMIC"](https://www.theregister.com/2023/02/02/system76_cosmic_xfce_updates/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20240717145511/https://www.theregister.com/2023/02/02/system76_cosmic_xfce_updates/) from the original on 2024-07-17. Retrieved 2024-07-17.

1. **[^](#cite_ref-192)** Hu, Vivian (2020-06-12). ["Deno Is Ready for Production"](https://www.infoq.com/news/2020/06/deno-1-ready-production/). *InfoQ*. [Archived](https://web.archive.org/web/20200701105007/https://www.infoq.com/news/2020/06/deno-1-ready-production/) from the original on 2020-07-01. Retrieved 2022-07-14.

1. **[^](#cite_ref-193)** Abrams, Lawrence (2021-02-06). ["This Flash Player emulator lets you securely play your old games"](https://www.bleepingcomputer.com/news/software/this-flash-player-emulator-lets-you-securely-play-your-old-games/). *[Bleeping Computer](/source/Bleeping_Computer)*. [Archived](https://web.archive.org/web/20211225124131/https://www.bleepingcomputer.com/news/software/this-flash-player-emulator-lets-you-securely-play-your-old-games/) from the original on 2021-12-25. Retrieved 2021-12-25.

1. **[^](#cite_ref-194)** Kharif, Olga (2020-10-17). ["Ethereum Blockchain Killer Goes By Unassuming Name of Polkadot"](https://www.bloomberg.com/news/articles/2020-10-17/ethereum-blockchain-killer-goes-by-unassuming-name-of-polkadot). *[Bloomberg News](/source/Bloomberg_News)*. [Bloomberg L.P.](/source/Bloomberg_L.P.) [Archived](https://web.archive.org/web/20201017192915/https://www.bloomberg.com/news/articles/2020-10-17/ethereum-blockchain-killer-goes-by-unassuming-name-of-polkadot) from the original on 2020-10-17. Retrieved 2021-07-14.

1. **[^](#cite_ref-195)** Keizer, Gregg (2016-10-31). ["Mozilla plans to rejuvenate Firefox in 2017"](https://www.computerworld.com/article/3137050/mozilla-plans-to-rejuvenate-firefox-in-2017.html). *[Computerworld](/source/Computerworld)*. [Archived](https://web.archive.org/web/20230513020437/https://www.computerworld.com/article/3137050/mozilla-plans-to-rejuvenate-firefox-in-2017.html) from the original on 2023-05-13. Retrieved 2023-05-13.

1. **[^](#cite_ref-196)** Claburn, Thomas (2023-01-12). ["Google polishes Chromium code with a layer of Rust"](https://www.theregister.com/2023/01/12/google_chromium_rust/). *[The Register](/source/The_Register)*. Retrieved 2024-07-17.

1. **[^](#cite_ref-197)** Jansens, Dana (2023-01-12). ["Supporting the Use of Rust in the Chromium Project"](https://security.googleblog.com/2023/01/supporting-use-of-rust-in-chromium.html). *Google Online Security Blog*. [Archived](https://web.archive.org/web/20230113004438/https://security.googleblog.com/2023/01/supporting-use-of-rust-in-chromium.html) from the original on 2023-01-13. Retrieved 2023-11-12.

1. ^ [***a***](#cite_ref-SO-2025-survey_198-0) [***b***](#cite_ref-SO-2025-survey_198-1) [***c***](#cite_ref-SO-2025-survey_198-2) ["2025 Stack Overflow Developer Survey – Technology"](https://survey.stackoverflow.co/2025/technology). *[Stack Overflow](/source/Stack_Overflow)*. Retrieved 2025-08-09.

1. **[^](#cite_ref-199)** Claburn, Thomas (2022-06-23). ["Linus Torvalds says Rust is coming to the Linux kernel"](https://www.theregister.com/2022/06/23/linus_torvalds_rust_linux_kernel/). *[The Register](/source/The_Register)*. [Archived](https://web.archive.org/web/20220728221531/https://www.theregister.com/2022/06/23/linus_torvalds_rust_linux_kernel/) from the original on 2022-07-28. Retrieved 2022-07-15.

1. **[^](#cite_ref-201)** Jung, Ralf; Jourdan, Jacques-Henri; Krebbers, Robbert; Dreyer, Derek (2017-12-27). ["RustBelt: securing the foundations of the Rust programming language"](https://dl.acm.org/doi/10.1145/3158154). *Proceedings of the ACM on Programming Languages*. **2** (POPL): 1–34. [doi](/source/Doi_(identifier)):[10.1145/3158154](https://doi.org/10.1145%2F3158154). [hdl](/source/Hdl_(identifier)):[21.11116/0000-0003-34C6-3](https://hdl.handle.net/21.11116%2F0000-0003-34C6-3). [ISSN](/source/ISSN_(identifier)) [2475-1421](https://search.worldcat.org/issn/2475-1421).

1. **[^](#cite_ref-202)** Popescu, Natalie; Xu, Ziyang; Apostolakis, Sotiris; August, David I.; Levy, Amit (2021-10-20). ["Safer at any speed: automatic context-aware safety enhancement for Rust"](https://doi.org/10.1145%2F3485480). *Proceedings of the ACM on Programming Languages*. **5** (OOPSLA): 1–23. [doi](/source/Doi_(identifier)):[10.1145/3485480](https://doi.org/10.1145%2F3485480). [ISSN](/source/ISSN_(identifier)) [2475-1421](https://search.worldcat.org/issn/2475-1421).

1. **[^](#cite_ref-ResearchSoftware1_203-0)** Blanco-Cuaresma, Sergi; Bolmont, Emeline (2017-05-30). ["What can the programming language Rust do for astrophysics?"](https://www.cambridge.org/core/journals/proceedings-of-the-international-astronomical-union/article/what-can-the-programming-language-rust-do-for-astrophysics/B51B6DF72B7641F2352C05A502F3D881). *[Proceedings of the International Astronomical Union](/source/Proceedings_of_the_International_Astronomical_Union)*. **12** (S325): 341–344. [arXiv](/source/ArXiv_(identifier)):[1702.02951](https://arxiv.org/abs/1702.02951). [Bibcode](/source/Bibcode_(identifier)):[2017IAUS..325..341B](https://ui.adsabs.harvard.edu/abs/2017IAUS..325..341B). [doi](/source/Doi_(identifier)):[10.1017/S1743921316013168](https://doi.org/10.1017%2FS1743921316013168). [ISSN](/source/ISSN_(identifier)) [1743-9213](https://search.worldcat.org/issn/1743-9213). [S2CID](/source/S2CID_(identifier)) [7857871](https://api.semanticscholar.org/CorpusID:7857871). [Archived](https://web.archive.org/web/20220625140128/https://www.cambridge.org/core/journals/proceedings-of-the-international-astronomical-union/article/what-can-the-programming-language-rust-do-for-astrophysics/B51B6DF72B7641F2352C05A502F3D881) from the original on 2022-06-25. Retrieved 2022-06-25.

1. **[^](#cite_ref-204)** Wallach, Dan. ["TRACTOR: Translating All C to Rust"](https://www.darpa.mil/research/programs/translating-all-c-to-rust). [DARPA](/source/DARPA). Retrieved 2025-08-03.

1. **[^](#cite_ref-FOOTNOTEKlabnikNichols20194_205-0)** [Klabnik & Nichols 2019](#CITEREFKlabnikNichols2019), p. 4.

1. **[^](#cite_ref-206)** ["Getting Started"](https://www.rust-lang.org/learn/get-started#ferris). *The Rust Programming Language*. [Archived](https://web.archive.org/web/20201101145703/https://www.rust-lang.org/learn/get-started#ferris) from the original on 2020-11-01. Retrieved 2020-10-11.

1. **[^](#cite_ref-StateOfRustSurvey2024_207-0)** The Rust Survey Team (2025-02-13). ["2024 State of Rust Survey Results"](https://blog.rust-lang.org/2025/02/13/2024-State-Of-Rust-Survey-results.html). *The Rust Programming Language*. Retrieved 2025-09-07.

1. **[^](#cite_ref-208)** Tung, Liam (2021-02-08). ["The Rust programming language just took a huge step forwards"](https://www.zdnet.com/article/the-rust-programming-language-just-took-a-huge-step-forwards/). *[ZDNET](/source/ZDNET)*. [Archived](https://web.archive.org/web/20220714105527/https://www.zdnet.com/article/the-rust-programming-language-just-took-a-huge-step-forwards/) from the original on 2022-07-14. Retrieved 2022-07-14.

1. **[^](#cite_ref-209)** Krill, Paul (2021-02-09). ["Rust language moves to independent foundation"](https://www.infoworld.com/article/3606774/rust-language-moves-to-independent-foundation.html). *[InfoWorld](/source/InfoWorld)*. [Archived](https://web.archive.org/web/20210410161528/https://www.infoworld.com/article/3606774/rust-language-moves-to-independent-foundation.html) from the original on 2021-04-10. Retrieved 2021-04-10.

1. **[^](#cite_ref-210)** Vaughan-Nichols, Steven J. (2021-04-09). ["AWS's Shane Miller to head the newly created Rust Foundation"](https://www.zdnet.com/article/awss-shane-miller-to-head-the-newly-created-rust-foundation/). *[ZDNET](/source/ZDNET)*. [Archived](https://web.archive.org/web/20210410031305/https://www.zdnet.com/article/awss-shane-miller-to-head-the-newly-created-rust-foundation/) from the original on 2021-04-10. Retrieved 2021-04-10.

1. **[^](#cite_ref-211)** Vaughan-Nichols, Steven J. (2021-11-17). ["Rust Foundation appoints Rebecca Rumbul as executive director"](https://www.zdnet.com/article/rust-foundation-appoints-rebecca-rumbul-as-executive-director/). *[ZDNET](/source/ZDNET)*. [Archived](https://web.archive.org/web/20211118062346/https://www.zdnet.com/article/rust-foundation-appoints-rebecca-rumbul-as-executive-director/) from the original on 2021-11-18. Retrieved 2021-11-18.

1. **[^](#cite_ref-212)** ["Governance"](https://www.rust-lang.org/governance). *The Rust Programming Language*. [Archived](https://web.archive.org/web/20251002151554/https://rust-lang.org/governance/) from the original on 2025-10-02. Retrieved 2025-11-19.

1. **[^](#cite_ref-213)** ["Introducing the Rust Leadership Council"](https://blog.rust-lang.org/2023/06/20/introducing-leadership-council.html). *Rust Blog*. 2023-06-20. Retrieved 2024-01-12.

## External links

Wikibooks has a book on the topic of: ***[Rust for the Novice Programmer](https://en.wikibooks.org/wiki/Rust_for_the_Novice_Programmer)***

**Rust**  at Wikipedia's [sister projects](https://en.wikipedia.org/wiki/Wikipedia:Wikimedia_sister_projects)

- [Media](https://commons.wikimedia.org/wiki/Category:Rust_(programming_language)) from Commons
- [Resources](https://en.wikiversity.org/wiki/Rust) from Wikiversity
- [Data](https://www.wikidata.org/wiki/Q575650) from Wikidata

- [Official website](https://rust-lang.org/)

- [Source code](https://github.com/rust-lang/rust) on [GitHub](/source/GitHub)

- [Documentation](https://doc.rust-lang.org/stable/)

v t e Rust programming language Compilers rustc Cranelift LLVM Package management, build tools Cargo Bazel Libraries, frameworks Rocket Serde Tokio Polars Development environments CLion IntelliJ IDEA Visual Studio Code Emacs Vim Neovim Kate Zed Verification, testing, analysis Clippy Rustfmt Miri QuickCheck Embedded, real-time Tock no_std Related topics Rust Foundation Rust IDEs Computer programming portal

v t e Programming languages Comparison Timeline History Ada ALGOL Simula APL Assembly BASIC Visual Basic classic .NET C C++ C# COBOL Erlang Elixir Forth Fortran Go Haskell Java JavaScript Julia Kotlin Lisp Lua MATLAB ML Caml OCaml Standard ML Pascal Object Pascal Perl Raku PHP Prolog Python R Ruby Rust SAS SQL Scratch Shell Smalltalk Swift more... Lists: Alphabetical Categorical Generational Non-English-based Category

v t e Mozilla Applications and Projects Mozilla Labs Bugzilla ChatZilla Jetpack Lightning Persona Prism Raindrop Skywriter Sunbird PDF.js Ubiquity Mozilla Research Open Media Rust Shumway WebAssembly WebXR asm.js Daala Firefox OS (Devices) OpenFlint Mozilla Foundation Mozilla Location Service SeaMonkey Mozilla Monitor Thunderbird Mozilla VPN List of products Firefox Firefox Browser Early version history 2 3 3.5 3.6 4 Version history for Android Focus Sync Pocket Origins Mozilla Application Suite Netscape Navigator Netscape Communicator Netscape Communications Beonex Communicator Frameworks Add-on Gecko Necko NPAPI Components Composer NSPR NSS Rhino SpiderMonkey Tamarin Features Typefaces Fira Zilla Slab Discontinued Calendar Project Camino Firefox Lockwise Firefox Send Minimo XUL XBL XPCOM XPInstall XULRunner Forks Classilla Flock Floorp Goanna Basilisk K-Meleon Pale Moon IceCat LibreWolf Miro Netscape 9 Portable Edition Swiftfox Waterfox xB Browser Zen Browser Discontinued projects are in italics. Some projects abandoned by Mozilla that are still maintained by third parties are in underline. Organization Foundation Mozilla Foundation Mozilla Corporation Mozilla Messaging Official affiliates Mozilla China (defunct) Mozilla Europe (defunct) Mozilla Japan People Mitchell Baker David Baron Tantek Çelik Laura Chambers Brendan Eich Anthony Enzor-DeMeo John Hammink Johnny Stenbäck Other topics Other Mozilla Manifesto The Book of Mozilla Code Rush Mozilla Public License Mascot Debian–Mozilla trademark dispute Common Voice Mozilla Corp. v. FCC (2019) Community mozdev.org MDN Web Docs MozillaZine

Authority control databases International GND FAST National United States France BnF data Czech Republic Spain Israel Other Yale LUX

[Portal](https://en.wikipedia.org/wiki/Wikipedia:Contents/Portals):
- [Computer programming](https://en.wikipedia.org/wiki/Portal:Computer_programming)

---
Adapted from the Wikipedia article [Rust (programming language)](https://en.wikipedia.org/wiki/Rust_(programming_language)) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Rust_(programming_language)?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
