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
//! `Ref` types with internal mutability that implement `Send` and `Sync`.
//!
//! These types are shared by [`rt_map`] and [`rt_vec`].
//!
//!
//! ## Usage
//!
//! Add the following to `Cargo.toml`:
//!
//! ```toml
//! rt_ref = "0.2.1" # or
//! rt_ref = { version = "0.2.1", features = ["unsafe_debug"] }
//! ```
//!
//! In code:
//!
//! ```rust
//! use rt_ref::{Cell, Ref, RefMut};
//!
//! let a = 1;
//!
//! // Insert a value into a collection, wrapped with `Cell`.
//! let mut v = Vec::new();
//! v.push(Cell::new(a));
//!
//! let v = v; // v is now compile-time immutable.
//! let a = v.get(0).map(|cell| RefMut::new(cell.borrow_mut()));
//! a.map(|mut a| {
//! *a += 2;
//! });
//!
//! let a = v.get(0).map(|cell| Ref::new(cell.borrow()));
//! assert_eq!(Some(3), a.map(|a| *a));
//! ```
//!
//!
//! ### Features
//!
//! #### `"unsafe_debug"`:
//!
//! The borrowed reference will use the inner type's `Debug` implementation when
//! formatted.
//!
//! ```rust
//! use rt_ref::{Cell, Ref, RefMut};
//!
//! let mut v = Vec::new();
//! v.push(Cell::new("a"));
//!
//! #[cfg(not(feature = "unsafe_debug"))]
//! assert_eq!(
//! r#"[Cell { flag: 0, inner: UnsafeCell { .. } }]"#,
//! format!("{v:?}")
//! );
//! #[cfg(feature = "unsafe_debug")]
//! assert_eq!(r#"[Cell { flag: 0, inner: "a" }]"#, format!("{v:?}"));
//! ```
//!
//!
//! [`rt_map`]: https://crates.io/crates/rt_map
//! [`rt_vec`]: https://crates.io/crates/rt_vec
pub use crate::;