Macro plugin_tls::thread_local [−][src]
macro_rules! thread_local { () => { ... }; ($(#[$attr : meta]) * $vis : vis static $name : ident : $t : ty = $init : expr ; $($rest : tt) *) => { ... }; ($(#[$attr : meta]) * $vis : vis static $name : ident : $t : ty = $init : expr) => { ... }; }
Expand description
Create one or more thread-local values.
This macro has identical syntax to std::thread_local!.