derive_di_core 0.2.0

This crate give traits for the parent crate derive_di
Documentation
1
2
3
4
/// Injectable trait which used for `Default` trait implementation of derive `Container` macro.
pub trait Injectable: Sized {
    fn get_service() -> Self;
}