Taiki Endo

Results 935 comments of Taiki Endo

I wonder if this is no longer necessary because impl trait recursion was [allowed some time ago](https://github.com/rust-lang/rust/pull/94081/).

Ah, thanks. And it is impressive that the compiler's diagnosis mentions async_recursion crate. ``` = note: consider using the `async_recursion` crate: https://crates.io/crates/async_recursion ```

I have been passively maintaining this repository as part of wg-async (after other members have left the maintenance of this repository), but honestly, I no longer want to be involved...

@rust-lang/wg-async Any thoughts on this?

Hmm, it seems there are at least two Simplified Chinese translations (https://github.com/rust-lang/async-book/pull/159, cc @playaround88). Would it be possible to consider merging them? If that is not easy, I think it...

> is typically expected to complete I feel this explanation is unclear. Future is often defined to complete (=will eventually return Poll::Ready), but it is not uncommon for Future to...

Can you tell me what kind of example you need?

I guess that implies the use of [interior mutability](https://doc.rust-lang.org/book/ch15-05-interior-mutability.html).

As said in #63, I'd prefer not to include translations directly in this repo. > I'd prefer not to include translations directly in this repo because we can't immediately propagate...

> When I change `foo` to `async fn foo` in the trait, I get an issue because the `async_trait` proc macro runs before the `generate_foo` macro is expanded, so I...