pub trait ValueClone {
    // Required method
    fn clone_box(&self) -> Box<dyn ValueData>;
}
Expand description

Clone trait helper.

Required Methods§

source

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

Implementors§

source§

impl<T> ValueClone for T
where T: 'static + ValueData + Clone,