hypospray 0.1.2

Lightweight dependency injection library
Documentation
1
2
3
4
5
6
7
use super::ComponentImp;

pub trait Component<T> where T: ?Sized {
    
    type ComponentImp: ComponentImp<Component=T>;
    type Scope;
}