(&mut self, state: JobState)
| 39 | /// Adds a job to the queue. |
| 40 | #[inline] |
| 41 | pub fn push(&mut self, state: JobState) { self.jobs.push(state); } |
| 42 | |
| 43 | /// Adds a job to the queue if a job of the given kind is not already running. |
| 44 | #[inline] |
no outgoing calls