trpl-zh-cn/listings/ch21-web-server/listing-21-12/output.txt

11 lines
410 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[E0433]: failed to resolve: use of undeclared type `ThreadPool`
2023-01-16 17:34:52 +08:00
--> src/main.rs:11:16
2022-02-06 16:43:51 +08:00
|
2023-01-16 17:34:52 +08:00
11 | let pool = ThreadPool::new(4);
2022-02-06 16:43:51 +08:00
| ^^^^^^^^^^ use of undeclared type `ThreadPool`
For more information about this error, try `rustc --explain E0433`.
error: could not compile `hello` (bin "hello") due to 1 previous error