Fragile

Build Status Crates.io License rustc 1.42.0 Documentation

This library provides wrapper types that permit sending non Send types to other threads and use runtime checks to ensure safety.

Example

```rust use std::thread;

// creating and using a fragile object in the same thread works let val = Fragile::new(true); asserteq!(*val.get(), true); assert!(val.tryget().is_ok());

// once send to another thread it stops working thread::spawn(move || { assert!(val.tryget().iserr()); }).join() .unwrap(); ```

License and Links