Tracking issue for RFC 2592, futures_api · Issue #59113 · rust-lang/rust (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Description
This is a tracking issue for the std::{future, task}
RFC 2592 under the feature gate futures_api
.
Steps:
- Implement the RFC (Update the future/task API #57992)
- Migrate
futures-preview
and some existing uses of it (Fuchsia) to the latest unstable API to ensure compatibility. - Make
RawWakerVTable
fields private and add aconst fn
constructor. - Stabilization PR (see instructions on forge)
Unresolved questions from FCP:
- Should
Future::poll
take&Waker
or a&Context
from which an&Waker
can be obtained?