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)]
```rust
use asynctraitproto::asynctraitproto; struct Foo;
trait Bar { async fn wait(&self); }
impl Bar for Foo { async fn wait(&self) { sleep(Duration::from_secs(10)).await; } } ```
License: Unlicense