mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 23:50:25 +08:00
18 lines
704 B
Plaintext
18 lines
704 B
Plaintext
$ cargo check
|
|
Checking hello v0.1.0 (file:///projects/hello)
|
|
error[E0382]: use of moved value: `receiver`
|
|
--> src/lib.rs:27:42
|
|
|
|
|
22 | let (sender, receiver) = mpsc::channel();
|
|
| -------- move occurs because `receiver` has type `std::sync::mpsc::Receiver<Job>`, which does not implement the `Copy` trait
|
|
...
|
|
27 | workers.push(Worker::new(id, receiver));
|
|
| ^^^^^^^^ value moved here, in previous iteration of loop
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|
|
error: could not compile `hello`
|
|
|
|
To learn more, run the command again with --verbose.
|