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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
//! # `toast_cell`
//!
//! A type-branded cell for aliasing checked at compile-time.
//!
//! It's based on the prior work of [GhostCell], but trades lifetime brands for
//! type brands.
//!
//! [GhostCell]: https://plv.mpi-sws.org/rustbelt/ghostcell/
//!
//! ## Safety
//!
//! Unlike GhostCell, this crate has not been formally proven. Use at your own
//! risk.
//!
//! ## Usage
//!
//! The interface of this crate is very similar to that of GhostCell. The main
//! difference is that [`GhostToken`]s do not require a closure to create a
//! unique invariant lifetime.
//!
//! ```
//! use toast_cell::{type_factory, GhostCell, GhostToken};
//!
//! // 1. Create a brand type.
//! let brand = type_factory::try_init().unwrap();
//!
//! // 2. Make a unique `GhostToken` out of it.
//! // The brand is consumed, so it cannot be used by any other token.
//! let mut token = GhostToken::new(brand);
//!
//! // 3. Use it with some `GhostCell`s.
//! let cell = GhostCell::new(0);
//! let references = [&cell, &cell, &cell];
//! for cell in references {
//! *cell.borrow_mut(&mut token) += 1;
//! }
//!
//! assert_eq!(cell.into_inner(), 3);
//! ```
//!
//! As the <code>impl [Unique]</code> brand types generated cannot be copied and
//! are consumed, each `GhostToken` is guaranteed to be unique from any other.
//!
//! The brand types also guarantee that [`GhostCell`]s used with one token are
//! incompatible with other tokens.
//!
//! ```compile_fail,E0308
//! # use toast_cell::{type_factory::{self, Unique}, GhostCell, GhostToken};
//! let brand = type_factory::try_init().unwrap();
//! let (brand, other_brand) = brand.split();
//!
//! let mut token = GhostToken::new(brand);
//! let cell = GhostCell::new(41);
//! *cell.borrow_mut(&mut token) += 1; // ✅
//!
//! let mut other_token = GhostToken::new(other_brand);
//! *cell.borrow_mut(&mut other_token) -= 1; // ❌
//! ```
//!
//! ## How does it work?
//!
//! The documentation of this crate is currently rather sparse. I would
//! recommend seeing the documentation of the [`ghost-cell` crate][ghost_cell]
//! for more information on the exact properties of GhostCell.
//!
//! As for the brand types, this crate uses the
//! [`type-factory` crate](type_factory) to generate unique types to use as
//! brands.
//!
//! [ghost_cell]: https://crates.io/crates/ghost-cell
//!
//! ## Minimum supported Rust version
//!
//! The MSRV is currently 1.75.
//!
//! This may change between minor versions.
//!
//! ## Similar crates
//!
//! There are many different crates intended to implement statically-checked
//! mutability like this. Ignoring exclusively runtime-checked implementations,
//! the following are the most notable examples:
//!
//! - [`ghost-cell`][ghost_cell] is the inspiration of this crate. It uses
//! lifetime-branded tokens. Tokens and their associated cells may only exist
//! within the scope of their containing closure.
//! - [`qcell`][qcell] provides two cells that are at least partially
//! statically-checked:
//! - `LCell` uses a lifetime-branded `LCellOwner`. It may be created within a
//! scope like `ghost-cell` or constructed with
//! [`generativity`][generativity].
//! - `TCell` uses a type-branded `TCellOwner`. Unlike this crate, it uses a
//! user-provided type, which means that it cannot guarantee uniqueness. It
//! panics at runtime if the user attempts to construct a duplicate
//! `TCellOwner`.
//! - [`frankencell`][frankencell] generates unique tokens using `const`-generic
//! `usize` IDs. They are created using an incrementing `TokenBuilder<N>`.
//! The first builder, `TokenBuilder<0>`, can only be created once. This is
//! runtime-checked.
//! - [`singleton-cell`][singleton_cell] provides a lifetime-branded token like
//! `ghost-cell` in addition to singleton token types generated
//! by a macro. Like `frankencell`, each may only be instantiated once, and
//! this is runtime-checked.
//!
//! The way this crate is unique is that:
//!
//! - It does not rely on lifetimes, lifting related restrictions.
//! - The brand types are guaranteed to be unique and do not require runtime
//! checks.
//!
//! [ghost_cell]: https://crates.io/crates/ghost-cell
//! [qcell]: https://crates.io/crates/qcell
//! [generativity]: https://crates.io/crates/generativity
//! [frankencell]: https://crates.io/crates/frankencell
//! [singleton_cell]: https://crates.io/crates/singleton-cell
// Attributes
// Lints
use ;
pub use type_factory;
// SAFETY: `GhostCell<T>` owns `T`, so it can be sent across threads if `T` can.
unsafe
// SAFETY: `GhostCell<T>` owns `T`, so it can be accessed from different threads
// if `T` can. `T` must also be `Send` as it can be extracted from
// methods such as `GhostCell::replace`
unsafe