1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! `LocalSlot<T>` is an `UnsafeCell<T>` with a manual `Sync` impl for
//! state that is only touched from one thread by external invariant.
use UnsafeCell;
/// A cell that is treated as `Sync` under a single-threaded access invariant.
///
/// Every call to [`Self::with_mut`] must happen on the owning thread.
pub ;
// SAFETY: only the arena's owning thread calls `with_mut`.
unsafe