-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Stabilize #![feature(precise_capturing_in_traits)]
#138128
base: master
Are you sure you want to change the base?
Stabilize #![feature(precise_capturing_in_traits)]
#138128
Conversation
r? @SparrowLii rustbot has assigned @SparrowLii. Use |
I'm putting up this staiblization report up with a request for comments. I think it's basiclaly as ready as it's going to get, but it's very likely I'm missing something that someone wants to see here 😸 cc @rust-lang/lang and @rust-lang/types -- would be cool if y'all could point out anything you'd like to see that's missing from this doc. |
Fantastic. Huge thanks to @compiler-errors for... let me count the ways:
Having reviewed the (exemplary) stabilization report and all tests, and having beat on this a bit myself, this all looks right to me, so I propose: |
Team member @traviscross has proposed to merge this. The next step is review by the rest of the tagged team members:
No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! cc @rust-lang/lang-advisors: FCP proposed for lang, please feel free to register concerns. |
This is blocked on tool support OR deciding it can be done later (not particularly married to either option) |
cc @Veykril @rust-lang/rust-analyzer |
@traviscross AFAIK we (rust-analyzer) don't model capturing yet (our lifetime handling is very-incomplete-to-outright-missing), and goto def etc. should already work. |
@rfcbot reviewed |
1 similar comment
@rfcbot reviewed |
@rustbot labels -I-lang-nominated +I-lang-radar We discussed this in the lang call today to resounding applause. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
Precise capturing (
+ use<>
bounds) in traits - Stabilization ReportFixes #130044.
Stabilization summary
This report proposes the stabilization of
use<>
precise capturing bounds in return-position impl traits in traits (RPITITs). This completes a missing part of [RFC 3617 "Precise capturing"].Precise capturing in traits was not ready for stabilization when the first subset was proposed for stabilization (namely, RPITs on free and inherent functions - #127672) since this feature has a slightly different implementation, and it hadn't yet been implemented or tested at the time. It is now complete, and the type system implications of this stabilization are detailed below.
Motivation
Currently, RPITITs capture all in-scope lifetimes, according to the decision made in the "lifetime capture rules 2024" RFC. However, traits can be designed such that some lifetimes in arguments may not want to be captured. There is currently no way to express this.
Major design decisions since the RFC
No major decisions were made. This is simply an extension to the RFC that was understood as a follow-up from the original stabilization.
What is stabilized?
Users may write
+ use<'a, T>
bounds on their RPITITs. This conceptually modifies the desugaring of the RPITIT to omit the lifetimes that we would copy over from the method. For example,And thus the GAT doesn't name
'a
. In the compiler internals, it's not implemented exactly like this, but not in a way that users should expect to be able to observe.Limitations on what generics must be captured
Currently, we require that all generics from the trait (including the
Self
) type are captured. This is because the generics from the trait are required to be invariant in order to do associated type normalization.And like regular precise capturing bounds, all type and const generics in scope must be captured.
Thus, only the in-scope method lifetimes may be relaxed with this syntax today.
What isn't stabilized? (a.k.a. potential future work)
See section above. Relaxing the requirement to capture all type and const generics in scope may be relaxed when #130043 is implemented, however it currently interacts with some underexplored corners of the type system (e.g. unconstrained type bivariance) so I don't expect it to come soon after.
Implementation summary
This functionality is implemented analogously to the way that opaque type precise capturing works.
Namely, we currently use variance to model the capturedness of lifetimes. However, since RPITITs are anonymous GATs instead of opaque types, we instead modify the type relation of GATs to consider variances for RPITITs (along with opaque types which it has done since #103491).
rust/compiler/rustc_middle/src/ty/util.rs
Lines 954 to 976 in 30f168e
rust/compiler/rustc_type_ir/src/relate.rs
Lines 240 to 244 in 30f168e
Using variance to model capturedness is an implementation detail, and in the future it would be desirable if opaques and RPITITs simply did not include the uncaptured lifetimes in their generics. This can be changed in a forwards-compatible way, and almost certainly would not be observable by users (at least not negatively, since it may indeed fix some bugs along the way).
Tests
tests/ui/impl-trait/precise-capturing/rpitit.rs
andtests/ui/impl-trait/precise-capturing/rpitit-outlives.rs
andtests/ui/impl-trait/precise-capturing/rpitit-outlives-2.rs
.tests/ui/impl-trait/in-trait/variance.rs
.tests/ui/impl-trait/precise-capturing/forgot-to-capture-type.rs
.tests/ui/impl-trait/precise-capturing/rpitit-captures-more-method-lifetimes.rs
andtests/ui/impl-trait/precise-capturing/rpitit-impl-captures-too-much.rs
.tests/ui/impl-trait/in-trait/refine-captures.rs
.What other unstable features may be exposed by this feature?
I don't believe that this exposes any new unstable features indirectly.
Remaining bugs and open issues
Not aware of any open issues or bugs.
Tooling support
Rustfmt: ✅ Supports formatting
+ use<>
everywhere.Clippy: ✅ No support needed, unless specific clippy lints are impl'd to care for precise capturing itself.
Rustdoc: ✅ Rendering
+ use<>
precise capturing bounds is supported.Rust-analyzer: ✅ Parser support, and then lifetime support isn't needed #138128 (comment) (previous:
❓ There is parser support, but I am unsure of rust-analyzer's level of support for RPITITs in general.)History
Tracking issue: #130044
use<..>
in RPITIT for refinement #132795opt_alias_variances
and use it in outlives code #136554