diff options
Diffstat (limited to 'src/interfaces/factory.rs')
-rw-r--r-- | src/interfaces/factory.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interfaces/factory.rs b/src/interfaces/factory.rs index 58cf56f..c67abd6 100644 --- a/src/interfaces/factory.rs +++ b/src/interfaces/factory.rs @@ -1,3 +1,5 @@ +use std::marker::Tuple; + use crate::libs::intertrait::CastFrom; use crate::ptr::TransientPtr; @@ -5,6 +7,7 @@ use crate::ptr::TransientPtr; pub trait IFactory<Args, ReturnInterface>: Fn<Args, Output = TransientPtr<ReturnInterface>> + CastFrom where + Args: Tuple, ReturnInterface: 'static + ?Sized, { } @@ -14,6 +17,7 @@ where pub trait IThreadsafeFactory<Args, ReturnInterface>: Fn<Args, Output = TransientPtr<ReturnInterface>> + crate::libs::intertrait::CastFromSync where + Args: Tuple, ReturnInterface: 'static + ?Sized, { } |