Async trait methods for no_std

Features like async-trait, avoid using Box and dyn. You can use async keywork in trait without alloc.

Thanks to crate async-trait, some code from these.

WARNING: This crate use some unstable even incomplete feature. You will get some warning from compiler.

If you want to use crate, please add #![feature(type_alias_impl_trait)] and #![feature(generic_associated_types)] to you crate's root file.

This crate support async in trait through #[async_trait] and sup

Support syntax

Features Status

Usage

Please enable feature type_alias_impl_trait and generic_associated_types;

async_trait

```rust

![feature(typealiasimpl_trait)]

![feature(genericassociatedtypes)]

use asynctraitstatic::async_trait;

async fn hello() -> u8 { 1 }

[async_trait]

trait AsyncFnTrait { async fn run(&self); }

struct AsyncStruct;

[async_trait]

impl AsyncFnTrait for AsyncStruct { async fn run(&self) { hello().await; } }

```

ritit

```rust

![feature(typealiasimpl_trait)]

![feature(genericassociatedtypes)]

use asynctraitstatic::ritit;

[ritit]

trait AsyncFnTrait { fn run(&self, t: T) -> impl core::future::Future impl core::future::Future { async move { 1 } } }

struct AsyncStruct;

impl AsyncStruct { async fn hello(&self) -> u8 { 1 } }

[ritit]

impl AsyncFnTrait for AsyncStruct { fn run(&self, t: T) -> impl core::future::Future