Async trait methods for no_std

Features like async-trait, avoid using Box and dyn.

This crate is ready for #![no_std] when PR69033 merged.

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

WARNING: This crate use some unstable even incomplete feature.

Features

Works

Usage

Please enable feature type_alias_impl_trait and generic_associated_types;

```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; } }

```