Struct deque::Stealer [] [src]

pub struct Stealer<T: Send> {
    // some fields omitted
}
[]

The stealing half of the work-stealing deque. Stealers have access to the opposite end of the deque from the worker, and they only have access to the steal method.

Methods

impl<T: Send> Stealer<T>
[src]

[]

Steals work off the end of the queue (opposite of the worker's end)

Trait Implementations

impl<T: Send> Clone for Stealer<T>
[src]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more