5 个版本
0.1.0 | 2020 年 11 月 19 日 |
---|---|
0.0.3 | 2020 年 11 月 3 日 |
0.0.2 | 2020 年 11 月 3 日 |
0.0.1 | 2020 年 11 月 3 日 |
0.0.0 | 2020 年 11 月 3 日 |
#26 在 #send-sync
91 每月下载量
用于 2 crates
5KB
104 行
不安全的同步发送
这是一个 Rust 包,基本提供了 3 种包装类型。
- 不安全的 Send
- 不安全的 Sync
- 不安全的 SendSync
它们可以用来强制结构体成为 Send 和/或 Sync,当然这是不安全的。
示例
use std::thread;
use std::rc::Rc;
fn main() {
let not_send = UnsafeSend::new( Rc::<u32>::new( 1337 ) );
assert!( not_send.strong_count() == 1,
"We can't really send a reference counted pointer across threads unless it only has one reference." );
thread::spawn(move || {
println!("We found a number: {}", *not_send);
});
}