diff options
Diffstat (limited to 'src/interfaces/async_injectable.rs')
-rw-r--r-- | src/interfaces/async_injectable.rs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/interfaces/async_injectable.rs b/src/interfaces/async_injectable.rs index dadb603..fb7f8ba 100644 --- a/src/interfaces/async_injectable.rs +++ b/src/interfaces/async_injectable.rs @@ -2,21 +2,23 @@ use std::fmt::Debug; use std::sync::Arc; +use crate::di_container::asynchronous::IAsyncDIContainer; use crate::errors::injectable::InjectableError; use crate::future::BoxFuture; use crate::libs::intertrait::CastFromSync; use crate::ptr::TransientPtr; -use crate::AsyncDIContainer; /// Interface for structs that can be injected into or be injected to. -pub trait AsyncInjectable: CastFromSync +pub trait AsyncInjectable<DIContainerType>: CastFromSync +where + DIContainerType: IAsyncDIContainer, { /// Resolves the dependencies of the injectable. /// /// # Errors /// Will return `Err` if resolving the dependencies fails. fn resolve<'di_container, 'fut>( - di_container: &'di_container Arc<AsyncDIContainer>, + di_container: &'di_container Arc<DIContainerType>, dependency_history: Vec<&'static str>, ) -> BoxFuture<'fut, Result<TransientPtr<Self>, InjectableError>> where @@ -24,7 +26,9 @@ pub trait AsyncInjectable: CastFromSync 'di_container: 'fut; } -impl Debug for dyn AsyncInjectable +impl<DIContainerType> Debug for dyn AsyncInjectable<DIContainerType> +where + DIContainerType: IAsyncDIContainer, { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |