pub trait MachineRegistrar {
    fn register_machine(&mut self, machine: Box<dyn Machine>);
}

Required Methods§

Implementors§