-
Notifications
You must be signed in to change notification settings - Fork 527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework trait parameter patterns #1771
Rework trait parameter patterns #1771
Conversation
r[items.traits.params.restriction-patterns.edition2018] | ||
> [!EDITION-2018] | ||
> Prior to the 2018 edition, parameters in associated functions with a body are limited to the following kinds of patterns: | ||
> | ||
> * [IDENTIFIER] | ||
> * `mut` [IDENTIFIER] | ||
> * [`_`][WildcardPattern] | ||
> * `&` [IDENTIFIER] | ||
> * `&&` [IDENTIFIER] | ||
> | ||
> ```rust,edition2015,compile_fail,E0642 | ||
> // 2015 Edition | ||
> trait T { | ||
> fn f1((a, b): (i32, i32)) {} // ERROR: pattern not allowed | ||
> } | ||
> ``` | ||
> | ||
> Beginning in 2018, all irrefutable patterns are allowed as described in [items.traits.params.patterns-with-body]. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a thought for another PR, but I wonder whether it'd be useful for us to link from these edition differences blocks to the relevant chapter of the edition guide.
src/items/traits.md
Outdated
* `&&` [IDENTIFIER] | ||
```rust,compile_fail,E0642 | ||
trait T { | ||
fn f2(&x: &i32); // ERROR: Patterns aren't allowed in functions without bodies |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be lowercased to match the others. I'll fix.
e9890c7
to
a319552
Compare
src/items/traits.md
Outdated
> ```rust,edition2015 | ||
> // 2015 Edition | ||
> trait T { | ||
> fn f(i32); // Parameter identifiers are not required. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other things here are going with the // OK: ..
pattern, so I'll edit to match that.
This updates the description of trait parameter patterns, primarily to shift it to the style where the main text describes the behavior in the current edition, and changes in the edition are moved to separate edition blocks. The specific changes: - Rework the edition presentation (as per our style guide). - Try to use more consistent wording. - Add examples. - Rename some of the rules to switch to the updated edition style, and try to be a little clearer about their intent. - Change the way it refers to "methods". The reference used to define methods as a separate kind of associated item, but we changed it so that functions allow an optional _SelfParam_, and methods aren't as special as they used to be. This text was still written assuming the previous presentation.
a319552
to
7cdad30
Compare
This updates the description of trait parameter patterns, primarily to shift it to the style where the main text describes the behavior in the current edition, and changes in the edition are moved to separate edition blocks.
The specific changes: