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
/* This file is @generated for testing purpose */
trait Trait {
    const KST: usize;
}
#[allow(async_fn_in_trait)]
#[allow(clippy::type_complexity)]
trait DynTrait {
    const KST: usize;
}
#[allow(clippy::type_complexity)]
impl<TraitImplementor: Trait> DynTrait for TraitImplementor {
    const KST: usize = TraitImplementor::KST;
}
fn main() {}