pub trait PoolManager: Send + Sync {
    // Required method
    fn stop(&mut self);
}
Expand description

Pool manager trait

Required Methods§

source

fn stop(&mut self)

Stops the worker

Implementors§