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
//! An unsafe crate to wrap a reference to make it [`Send`](https://doc.rust-lang.org/nightly/core/marker/trait.Send.html) + [`Sync`](https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html)
//! to be able to transfer it between threads.
//! Make sure the reference is still valid when unwrapping it.
//!
//! # Examples
//!
//! ```no_run
//! use std::thread;
//!
//! fn main() {
//! let data = "my string".to_owned();
//!
//! let ref_val = &data;
//! // Wrap the reference to make it Send + Sync.
//! let sendify_val = sendify::wrap(ref_val);
//!
//! thread::spawn(move || {
//! // Unwrap the reference, here make sure that reference is still valid otherwise
//! // the app might crash.
//! let ref_val = unsafe { sendify_val.unwrap() };
//! assert_eq!(ref_val, "my string")
//! })
//! .join()
//! .unwrap();
//!
//! assert_eq!(data, "my string")
//! }
//! ```
pub use Sendify;
pub use SendifyMut;
/// Wraps an immutable reference to make it [`Send`](https://doc.rust-lang.org/nightly/core/marker/trait.Send.html) + [`Sync`](https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html).
/// Wraps a mutable reference to make it [`Send`](https://doc.rust-lang.org/nightly/core/marker/trait.Send.html) + [`Sync`](https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html).