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

Required Methods§

source

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

Implementors§

source§

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