depcon_codegen 0.3.0

Code generation macros for depcon dependency injection framework
Documentation
1
2
3
4
5
6
7
use depcon::*;
use std::marker::PhantomData;

#[derive(Injectable)]
struct NonStatic<'a>(PhantomData<&'a ()>);

fn main() {}