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]

fn steal(&self) -> Stolen<T>

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

Trait Implementations

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

fn clone(&self) -> Self

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more