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