recoverable_thread_pool/worker/
struct.rs

1/// A worker thread in the thread pool.
2///
3/// Each worker is responsible for executing jobs
4/// from the shared job queue.
5#[allow(dead_code)]
6#[derive(Debug, Default)]
7pub struct Worker {
8    /// The unique identifier for this worker.
9    pub(super) id: usize,
10}