pub trait DITarget: Send + Sync + 'static { }
Expand description

Represent DI target type. It requires thread safety.

Implementors§

source§

impl<T: Send + Sync + 'static> DITarget for T