About 652,000 results
Open links in new tab
  1. Keywords - The Rust Reference

    These keywords aren’t used yet, but they are reserved for future use. They have the same restrictions as strict keywords. The reasoning behind this is to make current programs forward compatible with …

  2. Rust Programming Language

    A language empowering everyone to build reliable and efficient software.

  3. impl - Rust

    The other use of the impl keyword is in impl Trait syntax, which can be understood to mean “any (or some) concrete type that implements Trait”. It can be used as the type of a variable declaration, in …

  4. Keyword - dyn - Rust

    The dyn keyword is used to highlight that calls to methods on the associated Trait are dynamically dispatched. To use the trait this way, it must be dyn compatible 1.

  5. Getting started - Rust Programming Language

    A language empowering everyone to build reliable and efficient software.

  6. Common Programming Concepts - The Rust Programming Language - Learn Rust

    Many programming languages have much in common at their core. None of the concepts presented in this chapter are unique to Rust, but we’ll discuss them in the context of Rust and explain the …

  7. Fundamentals of Asynchronous Programming: Async, Await ... - Learn Rust

    The Rust Programming Language Fundamentals of Asynchronous Programming: Async, Await, Futures, and Streams Many operations we ask the computer to do can take a while to finish. It would be nice …

  8. A - Keywords - The Rust Programming Language - GitHub Pages

    A - Keywords Appendix A: Keywords The following list contains keywords that are reserved for current or future use by the Rust language. As such, they cannot be used as identifiers (except as raw …

  9. GitHub - rust-lang/rust: Empowering everyone to build reliable and ...

    Productivity: Comprehensive documentation, a compiler committed to providing great diagnostics, and advanced tooling including package manager and build tool (Cargo), auto-formatter (rustfmt), linter …

  10. pub - Rust

    The keyword pub makes any module, function, or data structure accessible from inside of external modules. The pub keyword may also be used in a use declaration to re-export an identifier from a …