Crates.io | rt_ref |
lib.rs | rt_ref |
version | 0.2.1 |
source | src |
created_at | 2022-06-27 09:26:17.621755 |
updated_at | 2024-01-28 04:26:22.86077 |
description | Internal `Ref` types for `rt_ref` and `rt_vec`. |
homepage | |
repository | https://github.com/azriel91/rt_ref |
max_upload_size | |
id | 614030 |
size | 56,996 |
Ref
types with internal mutability that implement Send
and Sync
.
These types are shared by rt_map
and rt_vec
.
Add the following to Cargo.toml
:
rt_ref = "0.2.1" # or
rt_ref = { version = "0.2.1", features = ["unsafe_debug"] }
In code:
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));
"unsafe_debug"
:The borrowed reference will use the inner type's Debug
implementation when formatted.
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:?}"));
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.