From bd10288adfaabdeb763fecb2f66d7dc4d35b37ee Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 19 Jan 2023 20:21:17 +0100 Subject: refactor!: make binding builder & configurator methods take self ownership BREAKING CHANGE: The methods of BindingBuilder, AsyncBuilder, BindingScopeConfigurator, AsyncBindingScopeConfigurator, BindingWhenConfigurator, AsyncBindingWhenConfigurator now take ownership of self --- src/di_container/blocking/binding/builder.rs | 13 +++++----- .../blocking/binding/scope_configurator.rs | 29 +++++++++++++--------- .../blocking/binding/when_configurator.rs | 2 +- 3 files changed, 25 insertions(+), 19 deletions(-) (limited to 'src/di_container/blocking/binding') diff --git a/src/di_container/blocking/binding/builder.rs b/src/di_container/blocking/binding/builder.rs index 65fa40f..27151d7 100644 --- a/src/di_container/blocking/binding/builder.rs +++ b/src/di_container/blocking/binding/builder.rs @@ -16,6 +16,7 @@ use crate::interfaces::injectable::Injectable; /// Binding builder for type `Interface` inside a [`IDIContainer`]. /// /// [`IDIContainer`]: crate::di_container::blocking::IDIContainer +#[must_use = "No binding will be created if you don't use the binding builder"] pub struct BindingBuilder where Interface: 'static + ?Sized, @@ -90,7 +91,7 @@ where /// /// [`IDIContainer`]: crate::di_container::blocking::IDIContainer pub fn to( - &self, + self, ) -> Result< BindingScopeConfigurator< Interface, @@ -117,7 +118,7 @@ where self.dependency_history_factory, ); - binding_scope_configurator.in_transient_scope(); + binding_scope_configurator.set_in_transient_scope(); Ok(binding_scope_configurator) } @@ -191,7 +192,7 @@ where #[cfg(feature = "factory")] #[cfg_attr(doc_cfg, doc(cfg(feature = "factory")))] pub fn to_factory( - &self, + self, factory_func: &'static Func, ) -> Result< BindingWhenConfigurator, @@ -221,7 +222,7 @@ where )), ); - Ok(BindingWhenConfigurator::new(self.di_container.clone())) + Ok(BindingWhenConfigurator::new(self.di_container)) } /// Creates a binding of type `Interface` to a factory that takes no arguments @@ -280,7 +281,7 @@ where #[cfg(feature = "factory")] #[cfg_attr(doc_cfg, doc(cfg(feature = "factory")))] pub fn to_default_factory( - &self, + self, factory_func: &'static FactoryFunc, ) -> Result< BindingWhenConfigurator, @@ -313,7 +314,7 @@ where )), ); - Ok(BindingWhenConfigurator::new(self.di_container.clone())) + Ok(BindingWhenConfigurator::new(self.di_container)) } } diff --git a/src/di_container/blocking/binding/scope_configurator.rs b/src/di_container/blocking/binding/scope_configurator.rs index 6c6c32d..ede0f6b 100644 --- a/src/di_container/blocking/binding/scope_configurator.rs +++ b/src/di_container/blocking/binding/scope_configurator.rs @@ -64,19 +64,12 @@ where /// This is the default. #[allow(clippy::must_use_candidate)] pub fn in_transient_scope( - &self, + self, ) -> BindingWhenConfigurator { - self.di_container.set_binding::( - None, - Box::new(TransientTypeProvider::< - Implementation, - DIContainerType, - DependencyHistoryType, - >::new()), - ); + self.set_in_transient_scope(); - BindingWhenConfigurator::new(self.di_container.clone()) + BindingWhenConfigurator::new(self.di_container) } /// Configures the binding to be in a singleton scope. @@ -84,7 +77,7 @@ where /// # Errors /// Will return Err if resolving the implementation fails. pub fn in_singleton_scope( - &self, + self, ) -> Result< BindingWhenConfigurator, BindingScopeConfiguratorError, @@ -101,7 +94,19 @@ where self.di_container .set_binding::(None, Box::new(SingletonProvider::new(singleton))); - Ok(BindingWhenConfigurator::new(self.di_container.clone())) + Ok(BindingWhenConfigurator::new(self.di_container)) + } + + pub(crate) fn set_in_transient_scope(&self) + { + self.di_container.set_binding::( + None, + Box::new(TransientTypeProvider::< + Implementation, + DIContainerType, + DependencyHistoryType, + >::new()), + ); } } diff --git a/src/di_container/blocking/binding/when_configurator.rs b/src/di_container/blocking/binding/when_configurator.rs index f93806b..656d81d 100644 --- a/src/di_container/blocking/binding/when_configurator.rs +++ b/src/di_container/blocking/binding/when_configurator.rs @@ -45,7 +45,7 @@ where /// # Errors /// Will return Err if no binding for the interface already exists. pub fn when_named( - &self, + self, name: &'static str, ) -> Result<(), BindingWhenConfiguratorError> { -- cgit v1.2.3-18-g5258