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.
14 lines
633 B
14 lines
633 B
$ cargo check
|
|
Checking hello v0.1.0 (file:///projects/hello)
|
|
error[E0382]: use of moved value: `receiver`
|
|
--> src/lib.rs:26:42
|
|
|
|
|
21 | let (sender, receiver) = mpsc::channel();
|
|
| -------- move occurs because `receiver` has type `std::sync::mpsc::Receiver<Job>`, which does not implement the `Copy` trait
|
|
...
|
|
26 | workers.push(Worker::new(id, receiver));
|
|
| ^^^^^^^^ value moved here, in previous iteration of loop
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|
|
error: could not compile `hello` due to previous error
|