mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
486 B
11 lines
486 B
3 years ago
|
$ cargo check
|
||
|
Checking hello v0.1.0 (file:///projects/hello)
|
||
|
error[E0507]: cannot move out of `worker.thread` which is behind a mutable reference
|
||
|
--> src/lib.rs:52:13
|
||
|
|
|
||
|
52 | worker.thread.join().unwrap();
|
||
|
| ^^^^^^^^^^^^^ move occurs because `worker.thread` has type `JoinHandle<()>`, which does not implement the `Copy` trait
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0507`.
|
||
|
error: could not compile `hello` due to previous error
|