Struct deque::Worker
[−]
[src]
pub struct Worker<T: Send> {
// some fields omitted
}Worker half of the work-stealing deque. This worker has exclusive access to
one side of the deque, and uses push and pop method to manipulate it.
There may only be one worker per deque.