pub trait AnyCloneable: AsAny + DynClone + Debug { }
Expand description

A trait for types that can be converted to Any and can also be cloned.

Implementors§

source§

impl<T: Clone + Debug + Any + 'static> AnyCloneable for T