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

Make WorkCounter trait objects cloneable

Required Methods§

source

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

Clone the object

Implementors§

source§

impl<T: 'static + WorkCounter + Clone> WorkCounterClone for T