ref_thread_local.rs
A macro for declaring thread-local static
s like using both of lazy_static!
and RefCell
Using this macro, you can have thread-local static
s be referenced by borrow()
function
like using a RefCell
.
You may also initialize or destroy a static
variable at any time you like.
Minimum supported rustc
1.30.0+
Getting Started
ref_thread_local.rs is available on crates.io. It is recommended to look there for the newest released version, as well as links to the newest builds of the docs.
At the point of the last update of this README, the latest published version could be used like this:
Add the following dependency to your Cargo manifest...
[]
= "0.0"
...and see the docs for how to use it.
Example
extern crate ref_thread_local;
use RefThreadLocal;
ref_thread_local!
License
Licensed under of
- MIT license (LICENSE or http://opensource.org/licenses/MIT)