async-recursion icon indicating copy to clipboard operation
async-recursion copied to clipboard

Procedural macro for recursive async functions

Results 6 async-recursion issues
Sort by recently updated
recently updated
newest added

Can this crate be made to use just `alloc` crate instead of being `std` dependant? That would help a lot of embedded developers given that the most recent version of...

![image](https://user-images.githubusercontent.com/16988115/191289099-cb845c9e-3786-4a6d-b99b-b5aed9495c8b.png) I always use ? expressions. However, after adding async, an inconvenient error occurs even if i use the method introduced in other [documents](https://rust-lang.github.io/async-book/07_workarounds/04_recursion.html) or use your library. ![image](https://user-images.githubusercontent.com/16988115/191289214-e7d5788e-394f-4249-965d-274e57acf691.png) This...

This would be convenient for crates which re-export the async_recursion macro, like frameworks whose users need an async_recursion-like macro to function (e.g. to store async functions and closures in a...

Adds usage documentation to the attribute macro so it shows up in reexports. I like having the documentation on the main page (without requiring a click through) so I've placed...

Hey, First, thanks for the crate, it's great. I'm wondering if it should be able to support trait methods? Maybe I'm just doing something wrong... and I was able to...