subcutaneous/
injector.rs

1/// An injector is what is able to inject [`Dependencies`][crate::Dependency]
2/// into an [`Applicant`][crate::Applicant].
3///
4/// It manages the dependencies' lifecycle.
5pub trait Storage: Send + Sync {
6    type Id: Send + Sized;
7}