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/castable_factory.rs | |
| parent | 157f38bc2287dcb9a8b21ef3d5e33c569dc5136e (diff) | |
refactor: make factories an optional feature
Diffstat (limited to 'src/castable_factory.rs')
| -rw-r--r-- | src/castable_factory.rs | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/src/castable_factory.rs b/src/castable_factory.rs index 5d582bb..c50456c 100644 --- a/src/castable_factory.rs +++ b/src/castable_factory.rs @@ -1,9 +1,7 @@ +use crate::interfaces::any_factory::AnyFactory;  use crate::interfaces::factory::IFactory; -use crate::libs::intertrait::CastFrom;  use crate::ptr::InterfacePtr; -pub trait AnyFactory: CastFrom {} -  pub struct CastableFactory<Args, ReturnInterface>  where      Args: 'static,  | 
