Trait massa_factory_exports::FactoryManager

source ·
pub trait FactoryManager {
    // Required method
    fn stop(&mut self);
}
Expand description

Factory manager used to stop the factory thread

Required Methods§

source

fn stop(&mut self)

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.

Implementors§