Loading AI tools
General-purpose programming language From Wikipedia, the free encyclopedia
Rust is a general-purpose programming language emphasizing performance, type safety, and concurrency. It enforces memory safety, meaning that all references point to valid memory. It does so without a traditional garbage collector; instead, both memory safety errors and data races are prevented by the "borrow checker", which tracks the object lifetime of references at compile time.
Paradigms | |
---|---|
Designed by | Graydon Hoare |
Developer | The Rust Team |
First appeared | May 15, 2015 |
Stable release | |
Typing discipline | |
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 | www |
Influenced by | |
Influenced | |
Rust does not enforce a programming paradigm, but was influenced by ideas from functional programming, including immutability, higher-order functions, algebraic data types, and pattern matching. It also supports object-oriented programming via structs, enums, traits, and methods. It is popular for systems programming.[13][14][15]
Software developer Graydon Hoare created Rust as a personal project while working at Mozilla Research in 2006. Mozilla officially sponsored the project in 2009. In the years following the first stable release in May 2015, Rust was adopted by companies including Amazon, Discord, Dropbox, Google (Alphabet), Meta, and Microsoft. In December 2022, it became the first language other than C and assembly to be supported in the development of the Linux kernel.
Rust has been noted for its rapid adoption, and has been studied in programming language theory research.
Rust began as a personal project in 2006 by Mozilla employee Graydon Hoare.[16] Hoare has stated that Rust was named for the group of fungi that are "over-engineered for survival".[16] During the time period between 2006 and 2009, Rust was not publicized to others at Mozilla and was written in Hoare's free time;[17] Hoare began speaking about the language around 2009 after a small group at Mozilla became interested in the project.[18] Hoare emphasized prioritizing good ideas from old languages over new development, citing languages including CLU (1974), BETA (1975), Mesa (1977), NIL (1981), Erlang (1987), Newsqueak (1988), Napier (1988), Hermes (1990), Sather (1990), Alef (1992), and Limbo (1996) as influences, stating "many older languages [are] better than new ones", and describing the language as "technology from the past come to save the future from itself."[17][18] Early Rust developer Manish Goregaokar similarly described Rust as being based on "mostly decades-old research."[16]
During the early years, the Rust compiler was written in about 38,000 lines of OCaml.[17][19] Early Rust contained features such as explicit object-oriented programming via an obj
keyword (later removed), and a system for something called typestates that would allow variables of a type to be tracked along with state changes (such as going from uninitialized to initialized). Functions were pure by default, meaning that side effects (such as reading or writing to a file) were not allowed without an explicit annotation.[17]
Mozilla officially sponsored the Rust project in 2009.[16] Brendan Eich and other executives, intrigued by the possibility of using Rust for a safe web browser engine, placed engineers on the project including Patrick Walton, Niko Matsakis, Felix Klock, and Manish Goregaokar. A conference room taken by the project developers was dubbed "the nerd cave," with a sign placed outside the door.[16]
During this time period, work had shifted from the initial OCaml compiler to a self-hosting compiler (i.e., written in Rust) based on LLVM.[20][note 4] The Rust ownership system was also in place by 2010.[16] The Rust logo was developed in 2011 based on a bicycle chainring.[22]
The first public release, Rust 0.1 was released in January 2012.[20][better source needed] The early 2010s saw increasing involvement from open source volunteers outside of Mozilla and outside of the United States. At Mozilla, executives would eventually employ over a dozen engineers to work on Rust full time over the next decade.[16]
The years from 2012 to 2015 were marked by substantial changes to the Rust type system, especially, removal of the typestate system, consolidation of other language features, and the removal of the garbage collector.[17][16] Memory management through the ownership system was gradually consolidated and expanded to prevent memory-related bugs. By 2013, the garbage collector feature was rarely used, and was removed by the team in favor of the ownership system.[16] Other changes during this time included the removal of pure functions, which were declared by an explicit pure
annotation, in March 2013.[23] Specialized syntax support for channels and various pointer types were removed to simplify the language.[17]
Rust's expansion and consolidation was influenced by developers coming from C++ (e.g., low-level performance of features), scripting languages (e.g., Cargo and package management), and functional programming (e.g., type systems development).[17]
Graydon Hoare stepped down from Rust in 2013.[16] This allowed it to evolve organically under a more federated governance structure, with a "core team" of initially 6 people, 30-40 developers total across various other teams, and a Request for Comments (RFC) process for new language features added in March 2014.[17] The core team would grow to 9 people by 2016 with over 1600 proposed RFCs.[17]
In January 2014, the editor-in-chief of Dr. Dobb's Journal, Andrew Binstock, commented on Rust's chances of becoming a competitor to C++, along with D, Go, and Nim (then Nimrod). According to Binstock, while Rust was "widely viewed as a remarkably elegant language", adoption slowed because it radically changed from version to version.[24] Rust development at this time was focused on finalizing the language features and moving towards 1.0 so it could achieve backward compatibility and productize the language for potential industry adoption.[17]
Six years after Mozilla sponsored its development, the first stable release, Rust 1.0, was published on May 15, 2015.[16] A year after the release, 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.[17]
The development of the Servo browser engine continued in parallel with Rust. 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.[17] The first version of Servo was released in 2016.[16] The Firefox web browser shipped with Rust code as of 2016 (version 45);[17][25], but components of Servo did not appear in Firefox until September 2017 (version 57) as part of the Gecko and Quantum projects.[26]
Improvements were made to the Rust toolchain ecosystem during the years following 1.0 including Rustfmt, integrated development environment integration, a regular compiler testing and release cycle, a community code of conduct, and community discussion organized through an IRC chat.[17]
The earliest adoption outside of Mozilla was by individual projects at Samsung, Facebook (now Meta Platforms), Dropbox, and others including Tilde, Inc. (the company behind ember.js).[17][16] Amazon Web Services followed in 2020.[16] Engineers cited performance, lack of a garbage collector, safety, and pleasantness of working in the language as reasons for the adoption, while acknowledging that it was a risky bet as Rust was new technology. Amazon developers cited the fact that Rust uses half as much electricity as similar code written in Java, behind only C,[16] as found by a study at the University of Minho, NOVA University Lisbon, and the University of Coimbra.[27][note 5]
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.[28][29] The team behind Servo was disbanded. The event raised concerns about the future of Rust, due to the overlap between the two projects.[30] 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 and domain names, and take financial responsibility for their costs.[31]
On February 8, 2021, the formation of the Rust Foundation was announced by five founding companies: Amazon Web Services, Google, Huawei, Microsoft, and Mozilla.[32][33] The foundation, led by Shane Miller for its first two years, offered $20,000 grants and other support for programmers working on major Rust features.[16] In a blog post published on April 6, 2021, Google announced support for Rust within the Android Open Source Project as an alternative to C/C++.[34]
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".[35] In May 2022, the Rust Core Team, other lead programmers, and certain members of the Rust Foundation board implemented governance reforms in response to the incident.[36]
The Rust Foundation posted a draft for a new trademark policy on April 6, 2023, including rules for how the Rust logo and name can be used, which resulted in negative reactions from Rust users and contributors.[37]
Rust's syntax is similar to that of C and C++,[38][39] although many of its features were influenced by functional programming languages such as OCaml.[40] Hoare has described Rust as targeted at frustrated C++ developers and emphasized features such as safety, control of memory layout, and concurrency.[18] Safety in Rust includes the guarantees of memory safety, type safety, and lack of data races.
Below is a "Hello, World!" program in Rust. The fn
keyword denotes a function, and the println!
macro (see § Macros) prints the message to standard output.[41] Statements in Rust are separated by semicolons.
fn main() {
println!("Hello, World!");
}
Variables in Rust are defined through the let
keyword.[42] The example below assigns a value to the variable with name foo
.
fn main() {
let foo = 10;
println!("The value of foo is {foo}");
}
Variables are immutable by default, and adding the mut
keyword allows the variable to be mutated.[43] The following example uses //
, which denotes the start of a comment.[44]
fn main() {
let mut foo = 10; // This code would not compile without adding "mut".
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. Variable shadowing allows transforming variables without having to name the variables differently.[45] The example below declares a new variable with the same name that is double the original value:
fn main() {
let foo = 10;
println!("The value of foo is {foo}");
let foo = foo * 2;
println!("The value of foo is {foo}");
}
Variable shadowing is also possible for values of different types, going from a string to its length:
fn main() {
let spaces = " ";
let spaces = spaces.len();
}
In Rust, blocks of code are delimited by curly brackets.[46]
if
blocksAn if
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.[47]
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");
}
}
while
loopswhile
can be used to repeat a block of code while a condition is met.[48]
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 iteratorsFor loops in Rust loop over elements of a collection.[49] "For" expressions work over any iterator type.
fn main(){
// Using `for` with range syntax for the same functionality as above
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
statementsMore generally, the loop
keyword allows repeating a portion of code until a break
occurs. break
may optionally exit the loop with a value. Labels denoted with 'label_name
can be used to break an outer loop when loops are nested.[50]
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;
}
}
Rust is expression-oriented, with nearly every part of a function body being an expression, including control-flow operators.[51] The if
expression is used to provide the ternary conditional operator. With returns being implicit, a function does not need to end with a return
expression; if the semicolon is omitted, the value of the last expression in the function is used as the return value,[52] as seen in the following recursive implementation of the factorial function:
fn factorial(i: u64) -> u64 {
if i == 0 {
1
} else {
i * factorial(i - 1)
}
}
The following iterative implementation uses the ..=
operator to create an inclusive range:
fn factorial(i: u64) -> u64 {
(2..=i).product()
}
The match
and if let
expressions can be used for pattern matching. For example, match
can be used to double an optional integer value if present, and return zero otherwise:[53]
fn double(x: Option<u64>) -> u64 {
match x {
Some(x) => x * 2,
None => 0,
}
}
Equivalently, this can be written with if let
and else
:
fn double(x: Option<u64>) -> u64 {
if let Some(x) = x {
x * 2
} else {
0
}
}
Rust is strongly typed and statically typed. 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. Type inference is used to determine the type of variables if unspecified.[54]
The default integer type is i32
, and the default floating point type is f64
. If the type of a literal number is not explicitly provided, either it is inferred from the context or the default type is used.[55]
Integer types in Rust are named based on the 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 architecture of the computer that runs the code, for example, on computers with 32-bit architectures, both types will take up 32 bits of space.
By default, integer literals are in base-10, but different radices are supported with prefixes, for example, 0b11
for binary numbers, 0o567
for octals, and 0xDB
for hexadecimals. 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.[56] Byte literals such as b'X'
are available to represent the ASCII value (in u8
) of a specific character.[57]
The 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: a Unicode codepoint that is not a surrogate.[58] IEEE 754 floating point numbers are supported with f32
for single precision floats and f64
for double precision floats.[59]
User-defined types are created with the struct
or enum
keywords. The struct
keyword is used to denote a record type that groups multiple related values.[60] enum
s can take on different variants at runtime, with its capabilities similar to algebraic data types found in functional programming languages.[61] Both structs and enums can contain fields with different types.[62] Alternative names for the same type can be defined with the type
keyword.[63]
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 within other languages.[64]
Type | Description | Examples |
---|---|---|
String |
UTF-8-encoded strings (dynamic) |
|
|
Platform-native strings[note 6] (borrowed[65] and dynamic[66]) |
|
|
Paths (borrowed[67] and dynamic[68]) |
|
|
C-compatible, null-terminated strings (borrowed[69] and dynamic[69]) |
|
Vec<T> |
Dynamic arrays |
|
Option<T> |
Option type |
|
Result<T, E> |
Error handling using a result type |
|
Box<T> |
A pointer to a heap-allocated value.[70] Similar to C++'s std::unique_ptr. | let boxed: Box<u8> = Box::new(5);
let val: u8 = *boxed;
|
Rc<T> |
Reference counting pointer[71] | let five = Rc::new(5);
let also_five = five.clone();
|
Arc<T> |
Atomic, thread-safe reference counting pointer[72] | let foo = Arc::new(vec![1.0, 2.0]);
let a = foo.clone(); // a can be sent to another thread
|
Cell<T> |
A mutable memory location[73] | let c = Cell::new(5);
c.set(10);
|
Mutex<T> |
A mutex lock for shared data contained within.[74] | let mutex = Mutex::new(0_u32);
let _guard = mutex.lock();
|
RwLock<T> |
Readers–writer lock[75] | let lock = RwLock::new(5);
let r1 = lock.read().unwrap();
|
Condvar |
A conditional monitor for shared data[76] | let (lock, cvar) = (Mutex::new(true), Condvar::new());
// As long as the value inside the `Mutex<bool>` is `true`, we wait.
let _guard = cvar.wait_while(lock.lock().unwrap(), |pending| { *pending }).unwrap();
|
Duration |
Type that represents a span of time[77] | Duration::from_millis(1) // 1ms
|
HashMap<K, V> |
Hash table[78] | let mut player_stats = HashMap::new();
player_stats.insert("damage", 1);
player_stats.entry("health").or_insert(100);
|
BTreeMap<K, V> |
B-tree[79] | let mut solar_distance = BTreeMap::from([
("Mercury", 0.4),
("Venus", 0.7),
]);
solar_distance.entry("Earth").or_insert(1.0);
|
Option
values are handled using syntactic sugar, such as the if let
construction, to access the inner value (in this case, a string):[80]
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}");
}
}
Type | Description | Examples |
---|---|---|
|
References (immutable and mutable) |
|
|
|
|
|
A pointer to heap-allocated value
(or possibly null pointer if wrapped in option)[69] |
|
|
|
|
Rust does not use null pointers to indicate a lack of data, as doing so can lead to null dereferencing. Accordingly, the basic &
and &mut
references are guaranteed to not be null. Rust instead uses Option
for this purpose: Some(T)
indicates that a value is present, and None
is analogous to the null pointer.[81] Option
implements a "null pointer optimization", avoiding any spatial overhead for types that cannot have a null value (references or the NonZero
types, for example).[82]
Unlike references, the raw pointer types *const
and *mut
may be null; however, it is impossible to dereference them unless the code is explicitly declared unsafe through the use of an unsafe
block. Unlike dereferencing, the creation of raw pointers is allowed inside of safe Rust code.[83]
Rust provides no implicit type conversion (coercion) between primitive types. But, explicit type conversion (casting) can be performed using the as
keyword.[84]
let x = 1000;
println!("1000 as a u16 is: {}", x as u16);
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.[85] 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.[86] With these rules, Rust can prevent the creation and use of dangling pointers:[86][87]
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
}
Because of these ownership rules, Rust types are known as linear or affine types, meaning each value can be used exactly once. This enforces a form of software fault isolation as the owner of a value is solely responsible for its correctness and deallocation.[88]
When a value goes out of scope, it is dropped by running its destructor. The destructor may be programmatically defined through implementing the Drop
trait. This helps manage resources such as file handles, network sockets, and locks, since when objects are dropped, the resources associated with them are closed or released automatically.[89]
Object lifetime refers to the period of time during which a reference is valid; that is, the time between the object creation and destruction.[90] 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).[91]
Lifetimes in Rust can be thought of as lexically scoped, meaning that the duration of an object lifetime is inferred from the set of locations in the source code (i.e., function, line, and column numbers) for which a variable is valid.[92] For example, a reference to a local variable has a lifetime corresponding to the block it is defined in:[92]
fn main() {
let x = 5; // ------------------+- Lifetime 'a
// |
let r = &x; // -+-- Lifetime 'b |
// | |
println!("r: {}", r); // | |
// | |
// -+ |
} // ------------------+
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.[93][94] 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 here: 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.[95]
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
):[96]
fn remove_prefix<'a>(mut original: &'a str, prefix: &str) -> &'a str {
if original.starts_with(prefix) {
original = original[prefix.len()..];
}
original
}
When user-defined types hold references to data, they also need to use lifetime parameters. The example below parses some configuration options from a string and creates a struct containing the options. The function parse_config
also showcases lifetime elision, which reduces the need for explicitly defining lifetime parameters.[97]
use std::collections::HashMap;
// This struct has one lifetime parameter, 'src. The name is only used within the struct's definition.
#[derive(Debug)]
struct Config<'src> {
hostname: &'src str,
username: &'src str,
}
// The '_ lifetime parameter, in this case, refers to the anonymous lifetime attached to the type
// of the argument `config`.
fn parse_config(config: &str) -> Config<'_> {
let key_values: HashMap<_, _> = config
.lines()
.filter(|line| !line.starts_with('#'))
.filter_map(|line| line.split_once('='))
.map(|(key, value)| (key.trim(), value.trim()))
.collect();
Config {
hostname: key_values["hostname"],
username: key_values["username"],
}
}
fn main() {
let config = parse_config(
r#"hostname = foobar
username=barfoo"#,
);
println!("Parsed config: {:#?}", config);
}
In the compiler, ownership and lifetimes work together to prevent memory safety issues such as dangling pointers.[98]
Rust's more advanced features include the use of generic functions. A generic function is given generic parameters, which allow the same function to be applied to different variable types. This capability reduces duplicate code[99] and is known as parametric polymorphism.
The following program calculates the sum of two things, for which addition is implemented using a generic function:
use std::ops::Add;
// sum is a generic function with one type parameter, T
fn sum<T>(num1: T, num2: T) -> T
where
T: Add<Output = T>, // T must implement the Add trait where addition returns another T
{
num1 + num2 // num1 + num2 is syntactic sugar for num1.add(num2) provided by the Add trait
}
fn main() {
let result1 = sum(10, 20);
println!("Sum is: {}", result1); // Sum is: 30
let result2 = sum(10.23, 20.45);
println!("Sum is: {}", result2); // Sum is: 30.68
}
At compile time, polymorphic functions like sum
are instantiated with the specific types the code requires; in this case, sum of integers and sum of floats.
Generics can be used in functions to allow implementing a behavior for different types without repeating the same code. Generic functions can be written in relation to other generics, without knowing the actual type.[100]
Rust's type system supports a mechanism called traits, inspired by type classes in the Haskell language,[6] to define shared behavior between different types. For example, the Add
trait can be implemented for floats and integers, which can be added; and the Display
or Debug
traits can be implemented for any type that can be converted to a string. Traits can be used to provide a set of common behavior for different types without knowing the actual type. This facility is known as ad hoc polymorphism.
Generic functions can constrain the generic type to implement a particular trait or traits; for example, an add_one
function might require the type to implement Add
. This means that a generic function can be type-checked as soon as it is defined. The implementation of generics is similar to the typical implementation of C++ templates: a separate copy of the code is generated for each instantiation. This is called monomorphization and contrasts with the type erasure scheme typically used in Java and Haskell. Type erasure is also available via the keyword dyn
(short for dynamic).[101] Because monomorphization duplicates the code for each type used, it can result in more optimized code for specific-use cases, but compile time and size of the output binary are also increased.[102]
In addition to defining methods for a user-defined type, the impl
keyword can be used to implement a trait for a type.[64] Traits can provide additional derived methods when implemented.[103] For example, the trait Iterator
requires that the next
method be defined for the type. Once the next
method is defined, the trait can provide common functional helper methods over the iterator, such as map
or filter
.[104]
Rust traits are implemented using static dispatch, meaning that the type of all values is known at compile time; however, Rust also uses a feature known as trait objects to accomplish dynamic dispatch (also known as duck typing).[105] Dynamically dispatched trait objects are declared using the syntax dyn Tr
where Tr
is a trait. Trait objects are dynamically sized, therefore they must be put behind a pointer, such as Box
.[106] The following example creates a list of objects where each object can be printed out using 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.[107]
Rust is designed to be memory safe. It does not permit null pointers, dangling pointers, or data races.[108][109][110] Data values can be initialized only through a fixed set of forms, all of which require their inputs to be already initialized.[111]
Unsafe code can subvert some of these restrictions, using the unsafe
keyword.[83] Unsafe code may also be used for low-level functionality, such as volatile memory access, architecture-specific intrinsics, type punning, and inline assembly.[112]
Rust does not use garbage collection. Memory and other resources are instead managed through the "resource acquisition is initialization" convention,[113] with optional reference counting. Rust provides deterministic management of resources, with very low overhead.[114] Values are allocated on the stack by default, and all dynamic allocations must be explicit.[115]
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 and other forms of undefined behavior.[116] Rust's type system separates shared, 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.[117]
It is possible to extend the Rust language using 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.[118][119] An example is the println!()
macro.[120]
Procedural macros are Rust functions that run and modify the compiler's input token 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.[121][122]
Procedural macros come in three flavors:
custom!(...)
#[derive(CustomDerive)]
#[custom_attribute]
The rsx!
macro in the Dioxus front-end framework is an example of a function-like macro.[123][124] Theserde_derive
macro[125] provides a commonly used library for generating code
for reading and writing data in many formats, such as JSON. Attribute macros are commonly used for language bindings, such as the extendr
library for Rust bindings to R.[126]
The following code shows the use of the Serialize
, Deserialize
, and Debug
-derived procedural macros
to implement JSON reading and writing, as well as the ability to format a structure for debugging.
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug)]
struct Point {
x: i32,
y: i32,
}
fn main() {
let point = Point { x: 1, y: 2 };
let serialized = serde_json::to_string(&point).unwrap();
println!("serialized = {}", serialized);
let deserialized: Point = serde_json::from_str(&serialized).unwrap();
println!("deserialized = {:?}", deserialized);
}
Rust does not support variadic arguments in functions. Instead, it uses macros.[127]
macro_rules! calculate {
// The pattern for a single `eval`
(eval $e:expr) => {{
{
let val: usize = $e; // Force types to be integers
println!("{} = {}", stringify!{$e}, val);
}
}};
// Decompose multiple `eval`s recursively
(eval $e:expr, $(eval $es:expr),+) => {{
calculate! { eval $e }
calculate! { $(eval $es),+ }
}};
}
fn main() {
calculate! { // Look ma! Variadic `calculate!`!
eval 1 + 2,
eval 3 + 4,
eval (2 * 3) + 1
}
}
c_variadic
feature switch. As with other C interfaces, the system is considered unsafe
to Rust.[128]
Rust has a foreign function interface (FFI) that can be used both to call code written in languages such as C from Rust and to call Rust code from those languages. As of 2024[update], an external library called CXX exists for calling to or from C++.[129] Rust and C differ in how they lay out structs in memory, so Rust structs may be given a #[repr(C)]
attribute, forcing the same layout as the equivalent C struct.[130]
The Rust ecosystem includes its compiler, its standard library, and additional components for software development. Component installation is typically managed by rustup
, a Rust toolchain installer developed by the Rust project.[131]
The Rust compiler, rustc
, translates Rust code into low-level LLVM IR. LLVM is then invoked as a subcomponent to apply optimizations and translate the resulting IR into object code. A linker is then used to combine the objects into a single executable image or binary file.[132]
Other than LLVM, the compiler also supports using alternative backends such as GCC and Cranelift for code generation.[133] The intention of those alternative backends is to increase platform coverage of Rust or to improve compilation times.[134][135]
The Rust 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 types. Rust also provides a way to exclude most of the standard library using the attribute #![no_std]
; this enables applications, such as embedded devices, which want to remove dependency code or provide their own core data structures. Internally, the standard library is divided into three parts, core
, alloc
, and std
, where std
and alloc
are excluded by #![no_std]
.[136]
Cargo is Rust's build system and 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.[137]
By default, Cargo sources its dependencies from the user-contributed registry crates.io, but Git repositories and crates in the local filesystem, and other external sources can also be specified as dependencies.[138]
Rustfmt is a code formatter for Rust. It formats whitespace and indentation to produce code in accordance with a common style, unless otherwise specified. It can be invoked as a standalone program, or from a Rust project through Cargo.[139]
Clippy is Rust's built-in linting tool to improve the correctness, performance, and readability of Rust code. As of 2024[update], it has more than 700 rules.[140][141]
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.[142]
Every two or three years, a new "edition" is produced. Editions are released to allow making limited breaking changes, such as promoting await
to a keyword to support async/await 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.[143]
rust-analyzer is a collection of utilities that provides Integrated development environments (IDEs) and text editors with information about a Rust project through the Language Server Protocol. This enables features including autocompletion, and the display of compilation errors while editing.[144]
In general, Rust's memory safety guarantees do not impose a runtime overhead.[145] A notable exception is array indexing which is checked at runtime, though this often does not impact performance.[146] Since it does not perform garbage collection, Rust is often faster than other memory-safe languages.[147][88][148]
Rust provides two "modes": safe and unsafe. Safe mode is the "normal" one, in which most Rust is written. In unsafe mode, the developer is responsible for the code's memory safety, which is used by developers for cases where the compiler is too restrictive.[149]
Many of Rust's features are so-called zero-cost abstractions, meaning they are optimized away at compile time and incur no runtime penalty.[150] The ownership and borrowing system permits zero-copy implementations for some performance-sensitive tasks, such as parsing.[151] Static dispatch is used by default to eliminate method calls, with the exception of methods called on dynamic trait objects.[152] The compiler also uses inline expansion to eliminate function calls and statically-dispatched method invocations.[153]
Since Rust utilizes LLVM, any performance improvements in LLVM also carry over to Rust.[154] Unlike C and C++, Rust allows for reordering struct and enum elements[155] to reduce the sizes of structures in memory, for better memory alignment, and to improve cache access efficiency.[156]
Rust has been used in software across different domains. Rust was initially funded by Mozilla as part of developing Servo, an experimental parallel browser engine, in collaboration with Samsung.[157] Components from the Servo engine were later incorporated in the Gecko browser engine underlying Firefox.[158] In January 2023, Google (Alphabet) announced support for using third party Rust libraries in Chromium.[159][160]
Rust is used in several backend software projects of large web services. OpenDNS, a DNS resolution service owned by Cisco, uses Rust internally.[161][162] Amazon Web Services uses Rust in "performance-sensitive components" of its several services. In 2019, AWS open-sourced Firecracker, a virtualization solution primarily written in Rust.[163] Microsoft Azure IoT Edge, a platform used to run Azure services on IoT devices, has components implemented in Rust.[164] Microsoft also uses Rust to run containerized modules with WebAssembly and Kubernetes.[165] Cloudflare, a company providing content delivery network services, used Rust to build a new web proxy named Pingora for increased performance and efficiency.[166] The npm package manager started using Rust for its production authentication service in 2019.[167][168][169]
In operating systems, the Android developers were using Rust in 2021 to rewrite existing components.[170][171] The Rust for Linux project, launched in 2020, added initial Rust support to Linux in late 2022, and the first Linux drivers written in Rust were released in late 2023.[172][173] Microsoft is rewriting parts of Windows in Rust.[174] The r9 project aims to re-implement Plan 9 from Bell Labs in Rust.[175] Rust has been used in the development of new operating systems such as Redox, a "Unix-like" operating system and microkernel,[176] Theseus, an experimental operating system with modular state management,[177][178] and most of Fuchsia.[179] Rust is also used for command-line tools and operating system components, including stratisd, a file system manager[180][181] and COSMIC, a desktop environment by System76.[182]
In web development, Deno, a secure runtime for JavaScript and TypeScript, is built on top of V8 using Rust and Tokio.[183] Other notable adoptions in this space include Ruffle, an open-source SWF emulator,[184] and Polkadot, an open source blockchain and cryptocurrency platform.[185]
Discord, an instant messaging software company, has rewritten parts of its system in Rust for increased performance in 2020. In the same year, Dropbox announced that its file synchronization had been rewritten in Rust. Facebook (Meta) has also used Rust to redesign its system that manages source code for internal projects.[16]
In the 2023 Stack Overflow Developer Survey, 13% of respondents had recently done extensive development in Rust.[186] The survey also named Rust the "most loved programming language" every year from 2016 to 2023 (inclusive) and the "most-admired programming language" in 2024, based on the number of developers interested in continuing to work in the same language.[187][note 7] In 2023, Rust was the 6th "most wanted technology", with 31% of developers not currently working in Rust expressing an interest in doing so.[186]
Rust has been studied in academic research, both for properties of the language itself as well as the utility the language provides for writing software used for research. Its features around safety[188][149] and performance[189] have been examined.
In a journal article published to Proceedings of the International Astronomical Union, astrophysicists Blanco-Cuaresma and Bolmont re-implemented programs responsible for simulating multi-planet systems in Rust, and found it to be a competitive programming language for its "speed and accuracy".[14] Likewise, an article published on Nature shared several stories of bioinformaticians using Rust for its performance and safety.[137] However, both articles have cited Rust's unique concepts, including its ownership system, being difficult to learn as one of the main drawbacks to adopting Rust.
Rust has been noted as having an inclusive community, and particularly welcomed people from the queer community, partly due to its code of conduct which outlined a set of expectations for Rust community members to follow. One MIT Technology Review article described the Rust community as "unusually friendly" to newcomers.[16][137]
Formation | February 8, 2021 |
---|---|
Founders | |
Type | Nonprofit organization |
Location | |
Shane Miller | |
Rebecca Rumbul | |
Website | foundation |
The Rust Foundation is a non-profit membership organization incorporated in United States, with the primary purposes of backing the technical project as a legal entity and helping to manage the trademark and infrastructure assets.[192][39]
It was established on February 8, 2021, with five founding corporate members (Amazon Web Services, Huawei, Google, Microsoft, and Mozilla).[193] The foundation's board is chaired by Shane Miller.[194] Starting in late 2021, its Executive Director and CEO is Rebecca Rumbul.[195] Prior to this, Ashley Williams was interim executive director.[39]
The Rust project is composed of teams that are responsible for different subareas of the development. The compiler team develops, manages, and optimizes compiler internals; and the language team designs new language features and helps implement them. The Rust project website lists 6 top-level teams as of July 2024[update].[196] Representatives among teams form the Leadership council, which oversees the Rust project as a whole.[197]
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.