Introduction


Take a look at this error:




error[E0277]: `YourType` cannot be sent between threads safely
--> src/main.rs:10:5
|
10 | thread::spawn(move || {
| ^^^^^^^^^^^^^ `YourType` cannot be sent between threads safely
|
= help: within `YourType`, the trait `Send` is not implemented for `SomeInnerType`
...