Trait IAntSClone
isis_ants_api
pub trait IAntSClone { fn box_clone(&self) -> Box<dyn IAntS>; }
Helper trait to allow us to clone our subsystem object
fn box_clone(&self) -> Box<dyn IAntS>
Helper function to allow us to clone our subsystem object
impl<T> IAntSClone for T where T: 'static + IAntS + Clone,