pub trait FactoryManager {
// Required method
fn stop(&mut self);
}
Expand description
Factory manager used to stop the factory thread
Stop the factory thread
Note that we do not take self by value to consume it
because it is not allowed to move out of Box<dyn FactoryManager>
This will improve if the unsized_fn_params feature stabilizes enough to be safely usable.