mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
9f36f988ad
Previously, async constructs would be lowered to "normal" generators, with an additional `from_generator` / `GenFuture` shim in between to convert from `Generator` to `Future`. The compiler will now special-case these generators internally so that async constructs will *directly* implement `Future` without the need to go through the `from_generator` / `GenFuture` shim. The primary motivation for this change was hiding this implementation detail in stack traces and debuginfo, but it can in theory also help the optimizer as there is less abstractions to see through. |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |