CompoundedClone

Trait CompoundedClone 

Source
pub trait CompoundedClone {
    // Required method
    fn clone_box(&self) -> Box<dyn Compounded>;
}

Required Methods§

Source

fn clone_box(&self) -> Box<dyn Compounded>

Implementors§

Source§

impl<T> CompoundedClone for T
where T: 'static + Compounded + Clone,