[][src]Trait implicit3d::ObjectClone

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

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

Required methods

fn clone_box(&self) -> Box<dyn Object<S>>

Clone Box<Object<_>>.

Loading content...

Implementors

impl<S: RealField + Float + From<f32>, T> ObjectClone<S> for T where
    T: 'static + Object<S> + Clone
[src]

Loading content...