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 thread;
use Rc;
This is a Rust package that basically provides 3 wrapper types.
They can be used to force structs to be Send and/or Sync, which is unsafe of course.
use thread;
use Rc;