aboutsummaryrefslogtreecommitdiff
path: root/src/private/any_factory.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-10-04 12:51:06 +0200
committerHampusM <hampus@hampusmat.com>2023-10-04 12:52:22 +0200
commit0f2756536e8fc311119da2af5b4dcc33f41bec6e (patch)
tree0964efe0eaf855017c67fae52da8672a47becc65 /src/private/any_factory.rs
parentc936439bfac9e35958f685a52abb51d781e70a7c (diff)
refactor!: remove factory & declare_default_factory macros
BREAKING CHANGE: The factory and the declare_default_factory macros have been removed. They are no longer needed to use factories
Diffstat (limited to 'src/private/any_factory.rs')
-rw-r--r--src/private/any_factory.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/private/any_factory.rs b/src/private/any_factory.rs
deleted file mode 100644
index 64af57e..0000000
--- a/src/private/any_factory.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-//! Interface for any factory to ever exist.
-
-use std::fmt::Debug;
-
-use crate::private::cast::{CastFrom, CastFromArc};
-
-/// Interface for any factory to ever exist.
-pub trait AnyFactory: CastFrom + Debug {}
-
-/// Interface for any threadsafe factory to ever exist.
-pub trait AnyThreadsafeFactory: CastFromArc + Debug {}