//! Interface for structs that can be injected into or be injected to. use std::fmt::Debug; use std::rc::Rc; use crate::dependency_history::IDependencyHistory; use crate::di_container::blocking::IDIContainer; use crate::errors::injectable::InjectableError; use crate::libs::intertrait::CastFrom; use crate::ptr::TransientPtr; /// Interface for structs that can be injected into or be injected to. pub trait Injectable: CastFrom where DIContainerType: IDIContainer, DependencyHistoryType: IDependencyHistory, { /// Resolves the dependencies of the injectable. /// /// # Errors /// Will return `Err` if resolving the dependencies fails. fn resolve( di_container: &Rc, dependency_history: DependencyHistoryType, ) -> Result, InjectableError> where Self: Sized; } impl Debug for dyn Injectable where DIContainerType: IDIContainer, DependencyHistoryType: IDependencyHistory, { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_str("{}") } }