#send-sync #send #sync #unsafe #wrapper

unsafe-send-sync

Unsafe wrappers for making structs Send and/or Sync

5 releases

0.1.0 Nov 19, 2020
0.0.3 Nov 3, 2020
0.0.2 Nov 3, 2020
0.0.1 Nov 3, 2020
0.0.0 Nov 3, 2020

#34 in #send-sync

Download history 3/week @ 2024-11-16 7/week @ 2024-11-23 17/week @ 2024-11-30 100/week @ 2024-12-07 73/week @ 2024-12-14 3/week @ 2024-12-21 4/week @ 2024-12-28 40/week @ 2025-01-04 38/week @ 2025-01-11 41/week @ 2025-01-18 28/week @ 2025-01-25 45/week @ 2025-02-01 74/week @ 2025-02-08 207/week @ 2025-02-15 610/week @ 2025-02-22 585/week @ 2025-03-01

1,482 downloads per month
Used in 4 crates (2 directly)

MIT license

5KB
104 lines

Unsafe Send Sync

This is a Rust package that basically provides 3 wrapper types.

  • UnsafeSend
  • UnsafeSync
  • UnsafeSendSync

They can be used to force structs to be Send and/or Sync, which is unsafe of course.

Example

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

No runtime deps