std::scoped_thread_local! [] [src]

macro_rules! scoped_thread_local {
    (static $name:ident: $t:ty) => { ... };
    (pub static $name:ident: $t:ty) => { ... };
}
Deprecated since 1.8.0

: hasn't proven itself over LocalKey

Declare a new scoped thread local storage key.

This macro declares a static item on which methods are used to get and set the value stored within.

See ScopedKey documentation for more information.