1 2 3 4 5 6 7
use crate::semaphores_map::QueuePermit; #[derive(Debug)] pub struct WorkerJob { pub job_id: String, pub permit: QueuePermit, }