use Any;
use Any;
use OwnedArgument;
/// An encapsulated wrapper on both traits Any and Clone.
///
/// Or in short, a trait implementing both Any and Clone are not dyn compatible.
/// As such, we have to resort to a hack in order for us to get the right variable,
/// which is why we require Any first.
///
/// The next implementation acts as a generic wrapper.
pub