You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This is a customized implementation of async trait that in addition to`async_trait` exports`async_trait_with_send` and`async_trait_without_send` attribute macros. This allows using`async_trait(?Send)` without the`?Send` qualifier, in-turn allowing use of`#cfg[]` conditional statements to alter between`Send` and`?Send` requirements based on features or platform architectures.
11
+
***
12
+
9
13
The initial round of stabilizations for the async/await language feature in Rust
10
14
1.39 did not include support for async fn in traits. Trying to include an async