About 18,300,000 results
Open links in new tab
  1. syntax - What do the ampersand '&' and star '*' symbols mean in …

    And from Method Syntax: Rust has a feature called automatic referencing and dereferencing. Calling methods is one of the few places in Rust that has this behavior. Here’s how it works: …

  2. Do you like the Rust syntax? : r/rust - Reddit

    In Rust's case, the only part that I think is non-trivial to learn is macro_rules!, but that's basically a symbolic substitution DSL embedded inside Rust, so it's hardly surprising. In terms of …

  3. Rust’s Ugly Syntax : r/rust - Reddit

    Jan 27, 2023 · A place for all things related to the Rust programming language—an open-source systems language that emphasizes performance, reliability, and productivity.

  4. My thoughts on why rust isn't well designed or very practical

    Jun 13, 2020 · Rust design is missing good practices that exist during it's initial development Rust is not safe and doesn't help you catch errors Covered above Missing syntax I'll skip the …

  5. Programming with Rust vs C, C++ : r/rust - Reddit

    Rust just ends up making conversions feel really verbose and pedantic. Plus it is never really obvious what the right syntax to use is, there are so many options with subtly different …

  6. The Rust programming language absolutely positively sucks

    A place for all things related to the Rust programming language—an open-source systems language that emphasizes performance, reliability, and productivity.

  7. How to document Rust function arguments? - Stack Overflow

    How to document Rust function arguments? Asked 10 years, 8 months ago Modified 1 year, 5 months ago Viewed 39k times

  8. rust - What does the Some (..) syntax mean? - Stack Overflow

    Jul 18, 2022 · What does the Some (..) syntax mean? Asked 3 years, 5 months ago Modified 9 months ago Viewed 2k times

  9. syntax - What does "|_|" mean in Rust? - Stack Overflow

    Oct 1, 2022 · Rust's documentation has a section on their syntax for closures that I recommend people read. By example, here is a quick comparison of semantically similar code that filters …

  10. rust - What does the `@` (at sign) operator do? - Stack Overflow

    Oct 4, 2021 · 14 It's a way to bind the matched value of a pattern to a variable (using the syntax: variable @ subpattern).