trpl-zh-cn/listings/ch20-web-server/listing-20-17/output.txt

14 lines
633 B
Plaintext
Raw Normal View History

2022-02-06 16:43:51 +08:00
$ cargo check
Checking hello v0.1.0 (file:///projects/hello)
error[E0382]: use of moved value: `receiver`
2023-01-16 17:34:52 +08:00
--> src/lib.rs:26:42
2022-02-06 16:43:51 +08:00
|
2023-01-16 17:34:52 +08:00
21 | let (sender, receiver) = mpsc::channel();
2022-02-06 16:43:51 +08:00
| -------- move occurs because `receiver` has type `std::sync::mpsc::Receiver<Job>`, which does not implement the `Copy` trait
...
2023-01-16 17:34:52 +08:00
26 | workers.push(Worker::new(id, receiver));
2022-02-06 16:43:51 +08:00
| ^^^^^^^^ 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