dynify-macros 0.1.2

Helpful procedural macros for dynify
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* This file is @generated for testing purpose */
trait Trait {
    async fn test(this: &Self, arg: &str);
}
#[allow(async_fn_in_trait)]
#[allow(clippy::type_complexity)]
trait DynTrait {
    async fn test(this: &Self, arg: &str);
}
#[allow(clippy::type_complexity)]
impl<TraitImplementor: Trait> DynTrait for TraitImplementor {
    async fn test(this: &Self, arg: &str) {
        TraitImplementor::test(this, arg).await
    }
}
fn main() {}