This library provides wrapper types that permit sending non Send types to other threads and use runtime checks to ensure safety.
```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(); ```