[][src]Struct thread_local::CachedThreadLocal

pub struct CachedThreadLocal<T: ?Sized + Send> { /* fields omitted */ }

Wrapper around ThreadLocal which adds a fast path for a single thread.

This has the same API as ThreadLocal, but will register the first thread that sets a value as its owner. All accesses by the owner will go through a special fast path which is much faster than the normal ThreadLocal path.

Methods

impl<T: ?Sized + Send> CachedThreadLocal<T>
[src]

Creates a new empty CachedThreadLocal.

Returns the element for the current thread, if it exists.

Important traits for &'a mut R

Returns the element for the current thread, or creates it if it doesn't exist.

Returns the element for the current thread, or creates it if it doesn't exist. If create fails, that error is returned and no element is added.

Returns a mutable iterator over the local values of all threads.

Since this call borrows the ThreadLocal mutably, this operation can be done safely---the mutable borrow statically guarantees no other threads are currently accessing their associated values.

Removes all thread-specific values from the ThreadLocal, effectively reseting it to its original state.

Since this call borrows the ThreadLocal mutably, this operation can be done safely---the mutable borrow statically guarantees no other threads are currently accessing their associated values.

impl<T: Send + Default> CachedThreadLocal<T>
[src]

Important traits for &'a mut R

Returns the element for the current thread, or creates a default one if it doesn't exist.

Trait Implementations

impl<T: ?Sized + Send> Sync for CachedThreadLocal<T>
[src]

impl<T: ?Sized + Send> Default for CachedThreadLocal<T>
[src]

Returns the "default value" for a type. Read more

impl<T: ?Sized + Send> IntoIterator for CachedThreadLocal<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a, T: ?Sized + Send + 'a> IntoIterator for &'a mut CachedThreadLocal<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<T: ?Sized + Send + Debug> Debug for CachedThreadLocal<T>
[src]

Formats the value using the given formatter. Read more

impl<T: ?Sized + Send + UnwindSafe> UnwindSafe for CachedThreadLocal<T>
[src]

Auto Trait Implementations

impl<T: ?Sized> Send for CachedThreadLocal<T>

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<I> IntoIterator for I where
    I: Iterator
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Important traits for &'a mut R

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Important traits for &'a mut R

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more