[][src]Trait isis_ants_api::IAntSClone

pub trait IAntSClone {
    fn box_clone(&self) -> Box<dyn IAntS>;
}

Helper trait to allow us to clone our subsystem object

Required Methods

Helper function to allow us to clone our subsystem object

Implementors

impl<T> IAntSClone for T where
    T: 'static + IAntS + Clone
[src]