recoverable_thread_pool/thread_pool/
struct.rs

1use crate::*;
2
3pub struct ThreadPool {
4    #[allow(dead_code)]
5    pub(super) workers: Vec<Worker>,
6    pub(super) sender: Sender<ThreadPoolJob>,
7}