Enum std::thread::LocalKeyState
[−]
[src]
pub enum LocalKeyState { Uninitialized, Valid, Destroyed, }
: state querying was recently added
Indicator of the state of a thread local storage key.
Variants
Uninitialized | Unstable : state querying was recently added All keys are in this state whenever a thread starts. Keys will
transition to the Keys in the |
Valid | Unstable : state querying was recently added Once a key has been accessed successfully, it will enter the Keys in the |
Destroyed | Unstable : state querying was recently added When a thread exits, the destructors for keys will be run (if
necessary). While a destructor is running, and possibly after a
destructor has run, a key is in the Keys in the |