Trait workerpool::Worker

source ·
pub trait Worker: Default + 'static {
    type Input: Send;
    type Output: Send;

    // Required method
    fn execute(&mut self, _: Self::Input) -> Self::Output;
}
Expand description

Abstraction of a worker which executes tasks in its own thread.

Required Associated Types§

Required Methods§

source

fn execute(&mut self, _: Self::Input) -> Self::Output

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Send + 'static> Worker for ThunkWorker<T>

§

type Input = Thunk<'static, T>

§

type Output = T