diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-22 13:25:45 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-22 13:25:45 +0200 |
commit | 4cb3884e24b3cba3347ff93475bbabd6fe18d2fa (patch) | |
tree | 2fa5e6d81de9dc39bd11d64797914e5d305d98e2 /src/interfaces/any_factory.rs | |
parent | 157f38bc2287dcb9a8b21ef3d5e33c569dc5136e (diff) |
refactor: make factories an optional feature
Diffstat (limited to 'src/interfaces/any_factory.rs')
-rw-r--r-- | src/interfaces/any_factory.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/any_factory.rs b/src/interfaces/any_factory.rs new file mode 100644 index 0000000..41063e1 --- /dev/null +++ b/src/interfaces/any_factory.rs @@ -0,0 +1,3 @@ +use crate::libs::intertrait::CastFrom; + +pub trait AnyFactory: CastFrom {} |