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

Execution manager used to stop the execution thread

Required Methods§

source

fn stop(&mut self)

Stop the execution thread Note that we do not take self by value to consume it because it is not allowed to move out of Box<dyn ExecutionManager> This will improve if the unsized_fn_params feature stabilizes enough to be safely usable.

Implementors§