aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/mod.rs
blob: ddb3bba6fc665d3c501136bf1e392157a5a92025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Various useful interfaces.

pub mod injectable;

#[cfg(feature = "factory")]
#[doc(hidden)]
pub mod any_factory;

#[cfg(feature = "factory")]
pub mod factory;

#[cfg(feature = "async")]
pub mod async_injectable;