[][src]Struct rustc_rayon_core::WorkerLocal

pub struct WorkerLocal<T> { /* fields omitted */ }

Holds worker-locals values for each thread in a thread pool. You can only access the worker local value through the Deref impl on the thread pool it was constructed on. It will panic otherwise

Methods

impl<T> WorkerLocal<T>[src]

pub fn new<F: FnMut(usize) -> T>(initial: F) -> WorkerLocal<T>[src]

Creates a new worker local where the initial closure computes the value this worker local should take for each thread in the thread pool.

pub fn into_inner(self) -> Vec<T>[src]

Returns the worker-local value for each thread

impl<T> WorkerLocal<Vec<T>>[src]

pub fn join(self) -> Vec<T>[src]

Joins the elements of all the worker locals into one Vec

Trait Implementations

impl<T> Send for WorkerLocal<T>[src]

impl<T> Sync for WorkerLocal<T>[src]

impl<T> Deref for WorkerLocal<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Debug> Debug for WorkerLocal<T>[src]

Auto Trait Implementations

impl<T> Unpin for WorkerLocal<T> where
    T: Unpin

impl<T> !UnwindSafe for WorkerLocal<T>

impl<T> !RefUnwindSafe for WorkerLocal<T>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]