2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: `Rc<()>` cannot be sent between threads safely
|
2020-04-01 01:10:13 +00:00
|
|
|
--> $DIR/no-send-res-ports.rs:25:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-12-16 06:20:30 +00:00
|
|
|
LL | thread::spawn(move|| {
|
|
|
|
| _____^^^^^^^^^^^^^_-
|
|
|
|
| | |
|
2020-09-02 07:40:56 +00:00
|
|
|
| | `Rc<()>` cannot be sent between threads safely
|
2019-12-16 06:20:30 +00:00
|
|
|
LL | |
|
|
|
|
LL | | let y = x;
|
|
|
|
LL | | println!("{:?}", y);
|
|
|
|
LL | | });
|
2020-09-02 07:40:56 +00:00
|
|
|
| |_____- within this `[closure@$DIR/no-send-res-ports.rs:25:19: 29:6 x:Foo]`
|
2019-09-04 17:17:59 +00:00
|
|
|
|
|
2020-06-12 02:31:49 +00:00
|
|
|
::: $SRC_DIR/std/src/thread/mod.rs:LL:COL
|
2019-09-04 17:17:59 +00:00
|
|
|
|
|
2019-12-16 06:20:30 +00:00
|
|
|
LL | F: Send + 'static,
|
2020-09-02 07:40:56 +00:00
|
|
|
| ---- required by this bound in `spawn`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: within `[closure@$DIR/no-send-res-ports.rs:25:19: 29:6 x:Foo]`, the trait `Send` is not implemented for `Rc<()>`
|
2018-08-08 12:28:26 +00:00
|
|
|
= note: required because it appears within the type `Port<()>`
|
2020-09-02 07:40:56 +00:00
|
|
|
= note: required because it appears within the type `Foo`
|
|
|
|
= note: required because it appears within the type `[closure@$DIR/no-send-res-ports.rs:25:19: 29:6 x:Foo]`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|