blob: b245ad8eef2a1c83d23116d992b322f54e1f32b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
//! When configurator for a binding for types inside of a [`AsyncDIContainer`].
use std::any::type_name;
use std::marker::PhantomData;
use std::sync::Arc;
use crate::errors::async_di_container::AsyncBindingWhenConfiguratorError;
use crate::AsyncDIContainer;
/// When configurator for a binding for type 'Interface' inside a [`AsyncDIContainer`].
pub struct AsyncBindingWhenConfigurator<Interface>
where
Interface: 'static + ?Sized + Send + Sync,
{
di_container: Arc<AsyncDIContainer>,
interface_phantom: PhantomData<Interface>,
}
impl<Interface> AsyncBindingWhenConfigurator<Interface>
where
Interface: 'static + ?Sized + Send + Sync,
{
pub(crate) fn new(di_container: Arc<AsyncDIContainer>) -> Self
{
Self {
di_container,
interface_phantom: PhantomData,
}
}
/// Configures the binding to have a name.
///
/// # Errors
/// Will return Err if no binding for the interface already exists.
pub async fn when_named(
&self,
name: &'static str,
) -> Result<(), AsyncBindingWhenConfiguratorError>
{
let mut bindings_lock = self.di_container.bindings.lock().await;
let binding = bindings_lock.remove::<Interface>(None).map_or_else(
|| {
Err(AsyncBindingWhenConfiguratorError::BindingNotFound(
type_name::<Interface>(),
))
},
Ok,
)?;
bindings_lock.set::<Interface>(Some(name), binding);
Ok(())
}
}
|