pub trait CommandClone {
    // Required method
    fn clone_box(&self) -> Box<dyn Command>;
}

Required Methods§

source

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

Implementors§

source§

impl<T> CommandClone for T
where T: 'static + Command + Clone,