async_trait_proto
Async trait prototype using the desugarization described in RFC 3185 Static Async Fn in Traits.
It should be faster than async-trait because it doesn't use allocations on every invocation and type erasure.
Requires these feature flags and a nightly compiler:
#![feature(generic_associated_types)]
#![feature(type_alias_impl_trait)]
Example
use async_trait_proto;
;
License: Unlicense