use std::marker::Tuple; use crate::libs::intertrait::CastFrom; use crate::ptr::TransientPtr; /// Interface for a factory. pub trait IFactory: Fn> + CastFrom where Args: Tuple, ReturnInterface: 'static + ?Sized, { } /// Interface for a threadsafe factory. #[cfg(feature = "async")] pub trait IThreadsafeFactory: Fn> + crate::libs::intertrait::CastFromSync where Args: Tuple, ReturnInterface: 'static + ?Sized, { }