[][src]Struct rustc_data_structures::sync::WorkerLocal

pub struct WorkerLocal<T>(_);

Methods

impl<T> WorkerLocal<T>[src]

pub fn new<F: FnMut(usize) -> T>(f: 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

Trait Implementations

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

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

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> Erased for T[src]

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

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<E> SpecializationError for E[src]