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

pub mod injectable;

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

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

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