pub trait WorkUnit { // Required method fn execute(self: Box<Self>); }
A single, atomic unit of work that one thread should process.
Executes this task on the current thread.