(&self)
| 1150 | .wants_to_resign |
| 1151 | .fetch_and(!(1 << worker.member_index), Ordering::Relaxed); |
| 1152 | |
| 1153 | // Drop the worker, which will also free the claimed membership. |
| 1154 | let thread_pool = worker.thread_pool; |
| 1155 | drop(worker); |
| 1156 | |
| 1157 | // Complete the resignation. |
nothing calls this directly
no test coverage detected