Rust (programming language)

Print Print
Reading time 24:44

Rust
A capitalised letter R set into a sprocket
The official Rust logo
ParadigmsMulti-paradigm: concurrent, functional, generic, imperative, structured
Designed byGraydon Hoare
DeveloperMozilla Research[1]
First appearedJuly 7, 2010; 10 years ago (2010-07-07)
Stable release
1.53.0[2] Edit this on Wikidata / June 17, 2021; 1 day ago (June 17, 2021)
Typing disciplineAffine, inferred, nominal, static, strong
Implementation languageRust
PlatformARM, IA-32, x86-64, MIPS, PowerPC, SPARC, RISC-V, WebAssembly[3][4]
OSLinux, macOS, Windows, FreeBSD, OpenBSD,[5]Redox, Android, iOS[6]
LicenseMIT or Apache 2.0[7]
Filename extensions.rs, .rlib (metadata file)
Websitewww.rust-lang.org
Influenced by
Influenced

Rust is a multi-paradigm programming language designed for performance and safety, especially safe concurrency.[17][18] Rust is syntactically similar to C++,[19] but can guarantee memory safety by using a borrow checker to validate references.[20] Rust achieves memory safety without garbage collection, and reference counting is optional.[21][22]

Rust was originally designed by Graydon Hoare at Mozilla Research, with contributions from Dave Herman, Brendan Eich, and others.[23][24] The designers refined the language while writing the Servo layout or browser engine,[25] and the Rust compiler. It has gained increasing use in industry, and Microsoft has been experimenting with the language for secure and safety-critical software components.[26][27]

Rust has been voted the "most loved programming language" in the Stack Overflow Developer Survey every year since 2016.[28]

History

An example of compiling a Rust program

The language grew out of a personal project begun in 2006 by Mozilla employee Graydon Hoare,[18] who stated that the project was possibly named after the rust family of fungi.[29] Mozilla began sponsoring the project in 2009[18] and announced it in 2010.[30][31] The same year, work shifted from the initial compiler (written in OCaml) to the LLVM-based self-hosting compiler written in Rust.[32] Named rustc, it successfully compiled itself in 2011.[33]

The first numbered pre-alpha release of the Rust compiler occurred in January 2012.[34] Rust 1.0, the first stable release, was released on May 15, 2015.[35][36] Following 1.0, stable point releases are delivered every six weeks, while features are developed in nightly Rust with daily releases, then tested with beta releases that last six weeks.[37][38] Every 2 to 3 years, a new Rust "Edition" is produced. This is to provide a easy reference point for changes due to the frequent nature of Rust's Train release schedule, as well as to provide a window to make breaking changes. Editions are largely compatible.[39]

Along with conventional static typing, before version 0.4, Rust also supported typestates. The typestate system modeled assertions before and after program statements, through use of a special check statement. Discrepancies could be discovered at compile time, rather than at runtime, as might be the case with assertions in C or C++ code. The typestate concept was not unique to Rust, as it was first introduced in the language NIL.[40] Typestates were removed because in practice they were little used,[41] though the same functionality can be achieved by leveraging Rust's move semantics.[42]

The style of the object system changed considerably within versions 0.2, 0.3 and 0.4 of Rust. Version 0.2 introduced classes for the first time, and version 0.3 added several features, including destructors and polymorphism through the use of interfaces. In Rust 0.4, traits were added as a means to provide inheritance; interfaces were unified with traits and removed as a separate feature. Classes were also removed and replaced by a combination of implementations and structured types.[citation needed]

Starting in Rust 0.9 and ending in Rust 0.11, Rust had two built-in pointer types: ~ and @, simplifying the core memory model. It reimplemented those pointer types in the standard library as Box and (the now removed) Gc.

In January 2014, before the first stable release, Rust 1.0, the editor-in-chief of Dr. Dobb's, Andrew Binstock, commented on Rust's chances of becoming a competitor to C++ and to the other up-and-coming languages D, Go, and Nim (then Nimrod). According to Binstock, while Rust was "widely viewed as a remarkably elegant language", adoption slowed because it repeatedly changed between versions.[43]

Rust has a foreign function interface (FFI) that can be called from e.g. C language, and can call C. While calling C++ has historically been problematic (from any language), Rust has a library, CXX, to allow calling to or from C++, and "CXX has zero or negligible overhead".[44]

In August 2020, Mozilla laid off 250 of its 1,000 employees worldwide as part of a corporate restructuring caused by the long-term impact of the COVID-19 pandemic.[45][46] Among those laid off were most of the Rust team,[47][better source needed] while the Servo team was completely disbanded.[48][better source needed] The event raised concerns about the future of Rust.[49]

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 taking ownership of all trademarks and domain names, and also take financial responsibility for their costs.[50]

On February 8, 2021 the formation of the Rust Foundation was officially announced by its five founding companies (AWS, Huawei, Google, Microsoft, and Mozilla).[51][52]

On April 6, 2021, Google announced support for Rust within Android Open Source Project as an alternative to C/C++.[53]

Syntax

Here is a simple "Hello, World!" program written in Rust. The println! macro prints the message to standard output.

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

The concrete syntax of Rust is similar to C and C++, with blocks of code delimited by curly brackets, and control flow keywords such as if, else, while, and for, although the specific syntax for defining functions is more similar to Pascal. Not all C or C++ keywords are implemented, however, and some Rust functions (such as the use of the keyword match for pattern matching) will be less familiar to those versed in these languages. Despite the superficial resemblance to C and C++, the syntax of Rust in a deeper sense is closer to that of the ML family of languages and the Haskell language. Nearly every part of a function body is an expression,[54] even control flow operators. For example, the ordinary if expression also takes the place of C's ternary conditional, an idiom used by ALGOL 60. As in Lisp, a function need not end with a return expression: in this case if the semicolon is omitted, the last expression in the function creates the return value, as seen in the following recursive implementation of the factorial function:

fn factorial(i: u64) -> u64 {
    match i {
        0 => 1,
        n => n * factorial(n-1)
    }
}

The following iterative implementation uses the ..= operator to create an inclusive range:

fn factorial(i: u64) -> u64 {
    (2..=i).product()
}

Features

File:Rust 101.webmPlay media
A presentation on Rust by Emily Dunham from Mozilla's Rust team (linux.conf.au conference, Hobart, 2017)

Rust is intended to be a language for highly concurrent and highly safe systems,[55] and programming in the large, that is, creating and maintaining boundaries that preserve large-system integrity.[56] This has led to a feature set with an emphasis on safety, control of memory layout, and concurrency.

Memory safety

Rust is designed to be memory safe, and it does not permit null pointers, dangling pointers, or data races in safe code.[57][58][59] Data values can be initialized only through a fixed set of forms, all of which require their inputs to be already initialized.[60] To replicate the function in other languages of pointers being either valid or NULL, such as in linked list or binary tree data structures, the Rust core library provides an option type, which can be used to test whether a pointer has Some value or None.[58] Rust also introduces added syntax to manage lifetimes, and the compiler reasons about these through its borrow checker. Unsafe code that can subvert some of these restrictions may be written using the language's unsafe keyword.[20]

Memory management

Rust does not use an automated garbage collection system. Instead, memory and other resources are managed through the resource acquisition is initialization (RAII) convention,[61] with optional reference counting. Rust provides deterministic management of resources, with very low overhead.[citation needed] Rust also favors stack allocation of values and does not perform implicit boxing.

There is the concept of references (using the & symbol), which does not involve run-time reference counting. The safety of using such pointers is verified at compile time by the borrow checker, preventing dangling pointers and other forms of undefined behavior. Additionally, Rust's type system separates shared, immutable pointers of the form &T from unique, mutable pointers of the form &mut T. However, a mutable pointer can be coerced to an immutable pointer, but not vice versa.

Ownership

Rust has an ownership system where all values have a unique owner, and the scope of the value is the same as the scope of the owner.[62][63] Values can be passed by immutable reference, using &T, by mutable reference, using &mut T, or by value, using T. At all times, there can either be multiple immutable references or one mutable reference (an implicit readers–writer lock). The Rust compiler enforces these rules at compile time and also checks that all references are valid.

Types and polymorphism

The type system supports a mechanism similar to type classes, called "traits", inspired directly by the Haskell language. This is a facility for ad hoc polymorphism, achieved by adding constraints to type variable declarations. Other features from Haskell, such as higher-kinded polymorphism, are not yet supported.

Rust features type inference for variables declared with the keyword let. Such variables do not require a value to be initially assigned to determine their type. A compile time error results if any branch of code leaves the variable without an assignment.[64] Variables assigned multiple times must be marked with the keyword mut.

Functions can be given generic parameters, which usually require the generic type to implement a certain trait or traits. Within such a function, the generic value can only be used through those traits. This means that a generic function can be type-checked as soon as it is defined. This is in contrast to C++ templates, which are fundamentally duck typed and cannot be checked until instantiated with concrete types. C++ concepts address the same issue and are part of C++20, though they still don't allow the C++ compiler to typecheck a template without concrete instantiation.

However, the implementation of Rust 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 in Rust by using the keyword dyn. The benefit of monomorphization is optimized code for each specific use case; the drawback is increased compile time and size of the resulting binaries.

The object system within Rust is based around implementations, traits and structured types. Implementations fulfill a role similar to that of classes within other languages and are defined with the keyword impl. Inheritance and polymorphism are provided by traits; they allow methods to be defined and mixed in to implementations. Structured types are used to define fields. Implementations and traits cannot define fields themselves, and only traits can provide inheritance. Among other benefits, this prevents the diamond problem of multiple inheritance, as in C++. In other words, Rust supports interface inheritance, but replaces implementation inheritance with composition; see composition over inheritance.

Components

Rust features a large number of components that extend the Rust feature set and make Rust development easier. Component installation is typically managed by rustup, a Rust toolchain installer developed by the Rust project.[65]

Cargo

Cargo is Rust's build system and package manager. Cargo handles (among other things) building code, downloading dependencies, and building dependencies.

The dependencies for a Rust package are specified in a Cargo.toml file along with version requirements, telling Cargo which versions of the dependency are compatible with the package. By default, Cargo sources its dependencies from the user-contributed registry crates.io but Git repositories and packages in the local filesystem can be specified as dependencies, too.[66]

Cargo also acts as a wrapper to clippy and other Rust components to facilitate the invocation of these tools. It requires projects to follow a certain directory structure "to make working with Rust packages easier".[67]

Rustfmt

Rustfmt is a code formatter for Rust. It takes Rust source code as input and changes the whitespace and indentation to produce formatted code in accordance to the Rust style guide.[68] Rustfmt can also check whether the input is correctly formatted.[69]

Clippy

Clippy is Rust's built in linting tool to improve the correctness, performance, and readability of Rust code. As of 2021, Clippy has more than 450 rules,[70] which can be browsed online and filtered by category.[71] Some rules are disabled by default.

RLS

RLS is a language server that provides IDEs and text editors with more information about a Rust project. It provides linting checks via Clippy, formatting via Rustfmt, automatic code completion via Racer, among other functions.[72] Development of Racer was slowed down in favor of rust-analyzer.[73]

Language extensions

It is possible to extend the Rust language using the procedural macro mechanism.[74]

Procedural macros use Rust functions that run at compile time to modify the token stream that is processed by the compiler. This complements the user defined macro mechanism which uses pattern matching to achieve similar goals.

Procedural macros come in three flavors:

  • Function-like macros custom!(...)
  • Derive macros #[derive(CustomDerive)]
  • Attribute macros #[CustomAttribute]

The println! macro is an example of a function-like macro and serde_derive[75] is 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.[76]

The following code shows the use of the Serialize, Deserialize and Debug derive 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);
}

Performance

Rust aims "to be as efficient and portable as idiomatic C++, without sacrificing safety".[77] Since Rust utilizes LLVM, any performance improvements in LLVM also carry over to Rust.[78]

Adoption

A bright orange crab icon
Some Rust users refer to themselves as Rustaceans (a pun on "crustacean") and use Ferris as their unofficial mascot.[79]

Rust was the third-most-loved programming language in the 2015 Stack Overflow annual survey[80] and took first place for 2016–2020.[81]

Web browser

A web browser and several related components are being written in Rust. Firefox,[82] for example, has two projects written in Rust, including Servo, a parallel web-browser engine[83] developed by Mozilla in collaboration with Samsung[84] and Quantum, which is composed of several sub projects, for improving the Gecko web-browser engine, which is also developed by Mozilla.[85]

Operating systems

Operating systems and OS-level components written in Rust include:

  • Redox: a "full-blown Unix-like operating system" including a microkernel[86]
  • Stratis: a file system manager for Fedora[87] and RHEL 8[88]
  • Google Fuchsia: a capability-based operating system

Other

  • exa, a "modern replacement for ls"
  • Microsoft Azure IoT Edge, a platform used to run Azure services and artificial intelligence on IoT devices, has components implemented in Rust[89]
  • OpenDNS uses Rust in two of its components[90][91][92]
  • Tor, an anonymity network, written in C originally, is experimenting with porting to Rust for its security features[93][94]
  • Deno, a secure runtime for JavaScript and TypeScript, is built with V8, Rust, and Tokio[95]
  • Prisma, an ORM for JavaScript, TypeScript, and Go, recently ported its query engine to Rust for its version 2 release.[96]
  • Discord, a chat service targeted towards gamers, uses Rust for portions of its backend, as well as client-side video encoding[97]
  • TerminusDB, an open source graph database designed for collaboratively building and curating knowledge graphs[98]
  • Ruffle, an open-source SWF emulator written in Rust[99]

Governance

Rust Foundation
Rust Foundation logo.png
FormationFebruary 8, 2021; 4 months ago (2021-02-08)
Founders
TypeNonprofit organization
Location
  • United States
Chairperson
Shane Miller
Executive Director
Ashley Williams (interim)
Websitefoundation.rust-lang.org

The Rust Foundation is a non-profit membership organization incorporated in Delaware, United States, with the primary purposes of supporting the maintenance and development of the language, cultivating the Rust project team members and user communities, managing the technical infrastructure underlying the development of Rust, and managing and stewarding the Rust trademark.

It was established on February 8, 2021, with five founding corporate members (Amazon Web Services, Huawei, Google, Microsoft, and Mozilla).[100]

The foundation's board is chaired by Shane Miller.[101] Its interim Executive Director is Ashley Williams.

Development

Rust conferences include:

  • RustConf: an annual conference in Portland, Oregon. Held annually since 2016 (except in 2020 because of the COVID-19 pandemic).[102]
  • Rust Belt Rust: a #rustlang conference in the Rust Belt[103]
  • RustFest: Europe's @rustlang conference[104]
  • RustCon Asia
  • Rust LATAM
  • Oxidize Global[105]

References

  1. ^ "Rust language". Archived from the original on September 6, 2020. Retrieved September 9, 2020. Mozilla was the first investor for Rust and continues to sponsor the work of the open source project. Mozilla also utilizes Rust in many of its core initiatives including Servo and key parts of Firefox.
  2. ^ "Announcing Rust 1.53.0".
  3. ^ "Rust Platform Support". Rust Forge. Archived from the original on February 13, 2018. Retrieved May 19, 2019.
  4. ^ "Frequently Asked Questions". Rust Embedded. Archived from the original on August 6, 2020. Retrieved May 14, 2019.
  5. ^ "OpenBSD ports". Archived from the original on April 11, 2019. Retrieved April 3, 2018.
  6. ^ "Building and Deploying a Rust library on iOS". September 6, 2017. Archived from the original on January 11, 2019. Retrieved January 11, 2019.
  7. ^ a b c d e f g h i j k l m "The Rust Reference: Appendix: Influences". Archived from the original on January 26, 2019. Retrieved November 11, 2018.
  8. ^ "Note Research: Type System". February 1, 2015. Archived from the original on February 17, 2019. Retrieved March 25, 2015.
  9. ^ "RFC for 'if let' expression". Archived from the original on March 4, 2016. Retrieved December 4, 2014.
  10. ^ "Command Optimizations?". June 26, 2014. Archived from the original on July 10, 2019. Retrieved December 10, 2014.
  11. ^ "Idris – Uniqueness Types". Archived from the original on November 21, 2018. Retrieved November 20, 2018.
  12. ^ Jaloyan, Georges-Axel (October 19, 2017). "Safe Pointers in SPARK 2014". arXiv:. Bibcode:2017arXiv171007047J. Cite journal requires |journal= (help)
  13. ^ Lattner, Chris. "Chris Lattner's Homepage". Nondot.org. Archived from the original on December 25, 2018. Retrieved May 14, 2019.
  14. ^ "Microsoft opens up Rust-inspired Project Verona programming language on GitHub". Archived from the original on January 17, 2020. Retrieved January 17, 2020.
  15. ^ "PHP RFC: Shorter Attribute Syntax". June 3, 2020. Archived from the original on March 7, 2021. Retrieved March 17, 2021.
  16. ^ Hoare, Graydon (December 28, 2016). "Rust is mostly safety". Graydon2. Dreamwidth Studios. Archived from the original on May 2, 2019. Retrieved May 13, 2019.
  17. ^ a b c "FAQ – The Rust Project". Rust-lang.org. Archived from the original on June 9, 2016. Retrieved June 27, 2019.
  18. ^ "Rust vs. C++ Comparison". Archived from the original on November 20, 2018. Retrieved November 20, 2018.
  19. ^ a b "Unsafe Rust". Archived from the original on October 14, 2020. Retrieved October 17, 2020.
  20. ^ "Fearless Security: Memory Safety". Archived from the original on November 8, 2020. Retrieved November 4, 2020.
  21. ^ "Rc<T>, the Reference Counted Smart Pointer". Archived from the original on November 11, 2020. Retrieved November 4, 2020.
  22. ^ Noel (July 8, 2010). "The Rust Language". Lambda the Ultimate. Archived from the original on November 23, 2012. Retrieved October 30, 2010.
  23. ^ "Contributors to rust-lang/rust". GitHub. Archived from the original on May 26, 2020. Retrieved October 12, 2018.
  24. ^ Bright, Peter (April 3, 2013). "Samsung teams up with Mozilla to build browser engine for multicore machines". Ars Technica. Archived from the original on December 16, 2016. Retrieved April 4, 2013.
  25. ^ "Why Rust for safe systems programming". Archived from the original on July 22, 2019. Retrieved July 22, 2019.
  26. ^ "How Microsoft Is Adopting Rust". August 6, 2020. Archived from the original on August 10, 2020. Retrieved August 7, 2020.
  27. ^ "Stack Overflow Developer Survey 2020". Stack Overflow. Archived from the original on January 29, 2021. Retrieved March 31, 2021.
  28. ^ Hoare, Graydon (June 7, 2014). "Internet archaeology: the definitive, end-all source for why Rust is named "Rust"". Reddit.com. Archived from the original on July 14, 2016. Retrieved November 3, 2016.
  29. ^ "Future Tense". April 29, 2011. Archived from the original on September 18, 2012. Retrieved February 6, 2012.
  30. ^ Hoare, Graydon (July 7, 2010). Project Servo (PDF). Mozilla Annual Summit 2010. Whistler, Canada. Archived (PDF) from the original on July 11, 2017. Retrieved February 22, 2017.
  31. ^ Hoare, Graydon (October 2, 2010). "Rust Progress". Archived from the original on August 15, 2014. Retrieved October 30, 2010.
  32. ^ Hoare, Graydon (April 20, 2011). "[rust-dev] stage1/rustc builds". Archived from the original on July 20, 2011. Retrieved April 20, 2011.
  33. ^ catamorphism (January 20, 2012). "Mozilla and the Rust community release Rust 0.1 (a strongly-typed systems programming language with a focus on memory safety and concurrency)". Archived from the original on January 24, 2012. Retrieved February 6, 2012.
  34. ^ "Version History". Archived from the original on May 15, 2015. Retrieved January 1, 2017.
  35. ^ The Rust Core Team (May 15, 2015). "Announcing Rust 1.0". Archived from the original on May 15, 2015. Retrieved December 11, 2015.
  36. ^ "Scheduling the Trains". Archived from the original on January 2, 2017. Retrieved January 1, 2017.
  37. ^ "G - How Rust is Made and "Nightly Rust" - The Rust Programming Language". doc.rust-lang.org. Retrieved May 22, 2021.
  38. ^ "What are editions? - The Edition Guide". doc.rust-lang.org. Retrieved May 22, 2021.
  39. ^ Strom, Robert E.; Yemini, Shaula (1986). "Typestate: A Programming Language Concept for Enhancing Software Reliability" (PDF). IEEE Transactions on Software Engineering: 157–171. doi:10.1109/TSE.1986.6312929. ISSN 0098-5589. S2CID 15575346. Archived (PDF) from the original on July 14, 2010. Retrieved November 14, 2010.
  40. ^ Walton, Patrick (December 26, 2012). "Typestate Is Dead, Long Live Typestate!". GitHub. Archived from the original on February 23, 2018. Retrieved November 3, 2016.
  41. ^ Biffle, Cliff (June 5, 2019). "The Typestate Pattern in Rust". Archived from the original on February 6, 2021. Retrieved February 1, 2021.
  42. ^ Binstock, Andrew. "The Rise And Fall of Languages in 2013". Dr Dobb's. Archived from the original on August 7, 2016. Retrieved December 11, 2015.
  43. ^ "Safe Interoperability between Rust and C++ with CXX". InfoQ. December 6, 2020. Retrieved January 3, 2021.
  44. ^ Cimpanu, Catalin (August 11, 2020). "Mozilla lays off 250 employees while it refocuses on commercial products". ZDNet. Retrieved December 2, 2020.
  45. ^ Cooper, Daniel (August 11, 2020). "Mozilla lays off 250 employees due to the pandemic". Engadget. Archived from the original on December 13, 2020. Retrieved December 2, 2020.
  46. ^ @tschneidereit (August 12, 2020). "Much of the team I used to manage was part of the Mozilla layoffs on Tuesday. That team was Mozilla's Rust team, and Mozilla's Wasmtime team. I thought I'd know how to talk about it by now, but I don't. It's heartbreaking, incomprehensible, and staggering in its impact" (Tweet). Retrieved December 2, 2020 – via Twitter.
  47. ^ @asajeffrey (August 11, 2020). "Mozilla is closing down the team I'm on, so I am one of the many folks now wondering what the next gig will be. It's been a wild ride!" (Tweet). Retrieved December 2, 2020 – via Twitter.
  48. ^ Kolakowski, Nick (August 27, 2020). "Is Rust in Trouble After Big Mozilla Layoffs?". Dice. Archived from the original on November 24, 2020. Retrieved December 2, 2020.
  49. ^ "Laying the foundation for Rust's future". Rust Blog. August 18, 2020. Archived from the original on December 2, 2020. Retrieved December 2, 2020.
  50. ^ "Rust Foundation". foundation.rust-lang.org. February 8, 2021. Archived from the original on February 9, 2021. Retrieved February 9, 2021.
  51. ^ "Mozilla Welcomes the Rust Foundation". Mozilla Blog. February 9, 2021. Archived from the original on February 8, 2021. Retrieved February 9, 2021.
  52. ^ Amadeo, Ron (April 7, 2021). "Google is now writing low-level Android code in Rust". Ars Technica. Archived from the original on April 8, 2021. Retrieved April 8, 2021.
  53. ^ "rust/src/grammar/parser-lalr.y". May 23, 2017. Retrieved May 23, 2017.
  54. ^ Avram, Abel (August 3, 2012). "Interview on Rust, a Systems Programming Language Developed by Mozilla". InfoQ. Archived from the original on July 24, 2013. Retrieved August 17, 2013.
  55. ^ "Debian -- Details of package rustc in sid". packages.debian.org. Archived from the original on February 22, 2017. Retrieved February 21, 2017.
  56. ^ Rosenblatt, Seth (April 3, 2013). "Samsung joins Mozilla's quest for Rust". Archived from the original on April 4, 2013. Retrieved April 5, 2013.
  57. ^ a b Brown, Neil (April 17, 2013). "A taste of Rust". Archived from the original on April 26, 2013. Retrieved April 25, 2013.
  58. ^ "Races - The Rustonomicon". doc.rust-lang.org. Archived from the original on July 10, 2017. Retrieved July 3, 2017.
  59. ^ "The Rust Language FAQ". static.rust-lang.org. 2015. Archived from the original on April 20, 2015. Retrieved April 24, 2017.
  60. ^ "RAII – Rust By Example". doc.rust-lang.org. Archived from the original on April 21, 2019. Retrieved November 22, 2020.
  61. ^ Klabnik, Steve; Nichols, Carol (June 2018). "Chapter 4: Understanding Ownership". The Rust Programming Language. San Francisco, California: No Starch Press. p. 44. ISBN 978-1-593-27828-1. Archived from the original on May 3, 2019. Retrieved May 14, 2019.
  62. ^ "The Rust Programming Language: What is Ownership". Rust-lang.org. Archived from the original on May 19, 2019. Retrieved May 14, 2019.
  63. ^ Walton, Patrick (October 1, 2010). "Rust Features I: Type Inference". Archived from the original on July 8, 2011. Retrieved January 21, 2011.
  64. ^ rust-lang/rustup, The Rust Programming Language, May 17, 2021, retrieved May 17, 2021
  65. ^ "Specifying Dependencies - The Cargo Book". doc.rust-lang.org. Retrieved May 17, 2021.
  66. ^ "Why Cargo Exists". The Cargo Book. Retrieved May 18, 2021.
  67. ^ "rust-dev-tools/fmt-rfcs". GitHub. Retrieved May 19, 2021.
  68. ^ "rustfmt". GitHub. Retrieved May 19, 2021.
  69. ^ "rust-lang/rust-clippy". GitHub. Retrieved May 21, 2021.
  70. ^ "ALL the Clippy Lints". Retrieved May 22, 2021.
  71. ^ "rust-lang/rls". GitHub. Retrieved May 26, 2021.
  72. ^ "racer-rust/racer". GitHub. Retrieved May 26, 2021.
  73. ^ "Procedural Macros". The Rust Programming Language Reference. Archived from the original on November 7, 2020. Retrieved March 23, 2021.
  74. ^ "Serde Derive". Serde Derive documentation. Archived from the original on April 17, 2021. Retrieved March 23, 2021.
  75. ^ "extendr_api - Rust". Extendr Api Documentation. Retrieved March 23, 2021.
  76. ^ Walton, Patrick (December 5, 2010). "C++ Design Goals in the Context of Rust". Archived from the original on December 9, 2010. Retrieved January 21, 2011.
  77. ^ "How Fast Is Rust?". The Rust Programming Language FAQ. Archived from the original on October 28, 2020. Retrieved April 11, 2019.
  78. ^ "Getting Started". rust-lang.org. Archived from the original on November 1, 2020. Retrieved October 11, 2020.
  79. ^ "Stack Overflow Developer Survey 2015". Stackoverflow.com. Archived from the original on December 31, 2016. Retrieved November 3, 2016.
  80. ^ "Stack Overflow Developer Survey 2019". Stack Overflow. Archived from the original on October 8, 2020. Retrieved March 31, 2021.
  81. ^ Herman, Dave (July 12, 2016). "Shipping Rust in Firefox * Mozilla Hacks: the Web developer blog". Hacks.mozilla.org. Archived from the original on November 8, 2020. Retrieved November 3, 2016.
  82. ^ Yegulalp, Serdar (April 3, 2015). "Mozilla's Rust-based Servo browser engine inches forward". InfoWorld. Archived from the original on March 16, 2016. Retrieved March 15, 2016.
  83. ^ Lardinois, Frederic (April 3, 2015). "Mozilla And Samsung Team Up To Develop Servo, Mozilla's Next-Gen Browser Engine For Multicore Processors". TechCrunch. Archived from the original on September 10, 2016. Retrieved June 25, 2017.
  84. ^ Bryant, David (October 27, 2016). "A Quantum Leap for the web". Medium. Archived from the original on December 9, 2020. Retrieved October 27, 2016.
  85. ^ Yegulalp, Serdar. "Rust's Redox OS could show Linux a few new tricks". infoworld. Archived from the original on March 21, 2016. Retrieved March 21, 2016.
  86. ^ Sei, Mark (October 10, 2018). "Fedora 29 new features: Startis now officially in Fedora". Marksei, Weekly sysadmin pills. Archived from the original on April 13, 2019. Retrieved May 13, 2019.
  87. ^ "RHEL 8: Chapter 8. Managing layered local storage with Stratis". October 10, 2018. Archived from the original on April 13, 2019. Retrieved April 13, 2019.
  88. ^ Nichols, Shaun (June 27, 2018). "Microsoft's next trick? Kicking things out of the cloud to Azure IoT Edge". The Register. Archived from the original on September 27, 2019. Retrieved September 27, 2019.
  89. ^ Balbaert, Ivo (May 27, 2015). Rust Essentials. Packt Publishing. p. 6. ISBN 978-1785285769. Retrieved March 21, 2016.
  90. ^ Frank, Denis (December 5, 2013). "Using HyperLogLog to Detect Malware Faster Than Ever". OpenDNS Security Labs. Archived from the original on August 14, 2017. Retrieved March 19, 2016.
  91. ^ Denis, Frank (October 4, 2013). "ZeroMQ: Helping us Block Malicious Domains in Real Time". OpenDNS Security Labs. Archived from the original on August 14, 2017. Retrieved March 19, 2016.
  92. ^ Hahn, Sebastian (March 31, 2017). "[tor-dev] Tor in a safer language: Network team update from Amsterdam". Archived from the original on November 12, 2020. Retrieved April 1, 2017.
  93. ^ asn (July 5, 2017). "The Wilmington Watch: A Tor Network Team Hackfest". Tor Blog. Archived from the original on January 4, 2018. Retrieved January 3, 2018.
  94. ^ Garbutt, James (January 27, 2019). "First thoughts on Deno, the JavaScript/TypeScript run-time". 43081j.com. Archived from the original on November 7, 2020. Retrieved September 27, 2019.
  95. ^ "Prisma 2 is Coming Soon (Update)". Prisma. Archived from the original on December 5, 2020. Retrieved March 30, 2021.
  96. ^ Howarth, Jesse (February 4, 2020). "Why Discord is switching from Go to Rust". Archived from the original on June 30, 2020. Retrieved April 14, 2020.
  97. ^ terminusdb/terminusdb-store, TerminusDB, December 14, 2020, archived from the original on December 15, 2020, retrieved December 14, 2020
  98. ^ "Ruffle". Ruffle. Archived from the original on January 26, 2021. Retrieved April 14, 2021.
  99. ^ Krill, Paul. "Rust language moves to independent foundation". InfoWorld. Archived from the original on April 10, 2021. Retrieved April 10, 2021.
  100. ^ Vaughan-Nichols, Steven J. (April 9, 2021). "AWS's Shane Miller to head the newly created Rust Foundation". ZDNet. Archived from the original on April 10, 2021. Retrieved April 10, 2021.
  101. ^ "RustConf 2020 - Thursday, August 20". rustconf.com. Archived from the original on August 25, 2019. Retrieved August 25, 2019.
  102. ^ Rust Belt Rust. Dayton, Ohio. October 18, 2019. Archived from the original on May 14, 2019. Retrieved May 14, 2019.
  103. ^ RustFest. Barcelona, Spain: asquera Event UG. 2019. Archived from the original on April 24, 2019. Retrieved May 14, 2019.
  104. ^ "Oxidize Global". Oxidize Berlin Conference. Retrieved February 1, 2021.

External links

By: Wikipedia.org
Edited: 2021-06-18 12:37:33
Source: Wikipedia.org