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
async
in trait. #[async_trait]
.impl trait
as return in trait. #[ritit]
.Self
Self
by reference.Self
by value.Self
by mut reference.Self
.Self
. (need test)Self
by mut value. (It seems unuse)Lifetime return
). (need test)async fn
implementations in trait.impl trait
in arguments. (need implement)Please enable feature type_alias_impl_trait
and generic_associated_types
;
```rust
use asynctraitstatic::async_trait;
async fn hello() -> u8 { 1 }
trait AsyncFnTrait { async fn run(&self); }
struct AsyncStruct;
impl AsyncFnTrait for AsyncStruct { async fn run(&self) { hello().await; } }
```
```rust
use asynctraitstatic::ritit;
trait AsyncFnTrait {
fn run
struct AsyncStruct;
impl AsyncStruct { async fn hello(&self) -> u8 { 1 } }
impl AsyncFnTrait for AsyncStruct {
fn run