aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/di_container/asynchronous/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/di_container/asynchronous/mod.rs b/src/di_container/asynchronous/mod.rs
index ad1f44f..19e28a8 100644
--- a/src/di_container/asynchronous/mod.rs
+++ b/src/di_container/asynchronous/mod.rs
@@ -81,7 +81,6 @@ where
DependencyHistoryType: IDependencyHistory + Send + Sync,
{
/// Returns a new [`AsyncBindingBuilder`] for the given interface.
- #[must_use]
fn bind<Interface>(
self: &mut Arc<Self>,
) -> AsyncBindingBuilder<Interface, Self, DependencyHistoryType>
@@ -151,7 +150,6 @@ impl AsyncDIContainer
#[async_trait]
impl IAsyncDIContainer<DependencyHistory> for AsyncDIContainer
{
- #[must_use]
fn bind<Interface>(
self: &mut Arc<Self>,
) -> AsyncBindingBuilder<Interface, Self, DependencyHistory>