#send-sync #sync #send #unsafe #rust

sendify

一个不安全的 crate,用于封装引用以使其成为 Send + Sync

3 个稳定版本

1.1.0 2020年5月24日
1.0.1 2020年5月24日

#33 in #send-sync

MIT 协议

8KB
73

Github Actions Status crates.io Documentation MIT

sendify-rs

一个不安全的 crate,用于封装引用以使其成为 Send + Sync,以便能够在线程之间传输。确保在解封装引用时引用仍然有效。

文档

安装

将此内容添加到您的 Cargo.toml 文件中

[dependencies]
sendify = "1.1"

示例

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")
}

贡献

您的 PR 和建议总是受欢迎。

无运行时依赖

功能