-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Add Poll::ready
and revert stabilization of task::ready!
#89651
Conversation
Poll::ready
Poll::ready
and revert stabilization of task::ready!
This comment has been minimized.
This comment has been minimized.
5786931
to
5f7e7d2
Compare
This is quite nice. Worth considering at least. |
(Just noting that 1.56 release notes would likely need to be updated.) |
Please note that if you choose to revert things landing in 1.56, the timeline on that is quite short -- ideally PRs for that are merged into master and tagged with beta-nominated + beta-accepted by mid-next week -- we have just 2 weeks before the release must ship. |
@rfcbot poll libs-api Retract |
Team member @dtolnay has asked teams: T-libs-api, for consensus on:
|
While I don't see much harm in having both, this does seem better in every way. |
I think there's a distinct disadvantage to having both, insofar as I think it's generally more confusing and difficult to teach features or functionality that can be invoked in multiple different ways. Not to mention the needless style discussions it ends up causing downstream where users often end up wanting to standardize on one option or the other. |
📌 Commit a1e03fc has been approved by |
Add `Poll::ready` and revert stabilization of `task::ready!` This PR adds an inherent `ready` method to `Poll` that can be used with the `?` operator as an alternative to the `task::ready!` macro: ```rust let val = ready!(fut.poll(cx)); let val = fut.poll(cx).ready()?; ``` I think this form is a nice, non-breaking middle ground between changing the `impl Try for Poll`, and adding a separate macro. It looks better than `ready!` in my opinion, and it composes well: ```rust let elem = ready!(fut.poll(cx)).pop().unwrap(); let elem = fut.poll(cx).ready()?.pop().unwrap(); ``` The planned stabilization of `ready!` in 1.56 has been reverted because I think this alternate approach is worth considering. r? rust-lang/libs
…askrgr Rollup of 9 pull requests Successful merges: - rust-lang#89471 (Use Ancestory to check default fn in const impl instead of comparing idents) - rust-lang#89643 (Fix inherent impl overlap check.) - rust-lang#89651 (Add `Poll::ready` and revert stabilization of `task::ready!`) - rust-lang#89675 (Re-use TypeChecker instead of passing around some of its fields ) - rust-lang#89710 (Add long explanation for error E0482) - rust-lang#89756 (Greatly reduce amount of debuginfo compiled for bootstrap itself) - rust-lang#89760 (Remove hack ignoring unused attributes for stage 0 std) - rust-lang#89772 (Fix function-names test for GDB 10.1) - rust-lang#89785 (Fix ICE when compiling nightly std/rustc on beta compiler) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
…htriplett fix minor spelling error in Poll::ready docs Fixes minor spelling error in the proposed `Poll::ready` docs. Not that my opinion matters, but +1 on the original PR (rust-lang#89651), it reads much nicer to me than the `ready!` macro.
Beta-accepted based on #89651 (comment) Note for whoever end up backporting this: Only commits 5f7e7d2 and 7a7dfa8 should be backported, as David noted above. |
…htriplett fix minor spelling error in Poll::ready docs Fixes minor spelling error in the proposed `Poll::ready` docs. Not that my opinion matters, but +1 on the original PR (rust-lang#89651), it reads much nicer to me than the `ready!` macro.
…htriplett fix minor spelling error in Poll::ready docs Fixes minor spelling error in the proposed `Poll::ready` docs. Not that my opinion matters, but +1 on the original PR (rust-lang#89651), it reads much nicer to me than the `ready!` macro.
[beta] backports - 2229: Consume IfLet expr rust-lang#89282 - Wrapper for -Z gcc-ld=lld to invoke rust-lld with the correct flavor rust-lang#89288 - Fix unsound optimization with explicit variant discriminants rust-lang#89489 - Fix stabilization version for bindings_after_at rust-lang#89605 - Turn vtable_allocation() into a query rust-lang#89619 - Revert "Stabilize Iterator::intersperse()" rust-lang#89638 - Ignore type of projections for upvar capturing rust-lang#89648 - ~~Add Poll::ready and~~ revert stabilization of task::ready! rust-lang#89651 - CI: Use mirror for libisl downloads for more docker dist builds rust-lang#89661 - Use correct edition for panic in [debug_]assert!(). rust-lang#89622 - Switch to our own mirror of libisl plus ct-ng oldconfig fixes rust-lang#89599 - Emit item no type error even if type inference fails rust-lang#89585 - Revert enum discriminants rust-lang#89884
This PR adds an inherent
ready
method toPoll
that can be used with the?
operator as an alternative to thetask::ready!
macro:I think this form is a nice, non-breaking middle ground between changing the
impl Try for Poll
, and adding a separate macro. It looks better thanready!
in my opinion, and it composes well:The planned stabilization of
ready!
in 1.56 has been reverted because I think this alternate approach is worth considering.r? rust-lang/libs