| Crates.io | ref_thread_local |
| lib.rs | ref_thread_local |
| version | 0.1.1 |
| created_at | 2018-10-01 16:09:29.160524+00 |
| updated_at | 2021-11-16 16:48:09.99826+00 |
| description | A macro for declaring thread-local `static`s like using both of `lazy_static!` and `RefCell` |
| homepage | |
| repository | https://github.com/Xeiron/ref_thread_local.rs |
| max_upload_size | |
| id | 87431 |
| size | 27,975 |
A macro for declaring thread-local statics like using both of lazy_static! and RefCell
Using this macro, you can have thread-local statics be referenced by borrow() function
like using a RefCell.
You may also initialize or destroy a static variable at any time you like.
rustc1.30.0+
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...
[dependencies]
ref_thread_local = "0.0"
...and see the docs for how to use it.
#[macro_use]
extern crate ref_thread_local;
use ref_thread_local::RefThreadLocal;
ref_thread_local! {
static managed NUMBER: i32 = 233;
}
fn main() {
let x = NUMBER.borrow(); // a Ref<'a, i32>
println!("The number is {}.", x);
}
Licensed under of