commit | 32e333826caacb4af74b4fa565acfd920459e994 | [log] [tgz] |
---|---|---|
author | Joel Galenson <jgalenson@google.com> | Tue Aug 24 18:48:14 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Aug 24 18:48:14 2021 +0000 |
tree | 4ddc01f58a45aaef386e103b12029459d4cbd9f1 | |
parent | 8c6165b2e36b5cb0a5ff6fb06e772f4a993978b6 [diff] | |
parent | f91f6ac65232aed1093ca5f5b112a26d6ab0f25d [diff] |
Update TEST_MAPPING am: 428a58c1f3 am: f91f6ac652 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/thread_local/+/1806202 Change-Id: If1b94c987c5f18c5382cd3e58a56baf468657881
This library provides the ThreadLocal
type which allow a separate copy of an object to be used for each thread. This allows for per-object thread-local storage, unlike the standard library's thread_local!
macro which only allows static thread-local storage.
Add this to your Cargo.toml
:
[dependencies] thread_local = "1.1"
This crate's minimum supported Rust version (MSRV) is 1.36.0.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.