pub trait ObjectClone<S> {
    fn clone_box(&self) -> Box<dyn Object<S>>;
}
Expand description

Trait to allow cloning of Box<Object<_>>.

Required Methods§

Clone Box<Object<_>>.

Implementors§