pub trait WorkerPoolInf<M: Send + Sized + Unpin + 'static>: Send + Sync { // Required method fn submit(&self, msg: M) -> Option<M>; }