mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-13 03:21:20 +08:00
21 lines
882 B
Plaintext
21 lines
882 B
Plaintext
$ cargo run
|
|
Compiling rectangles v0.1.0 (file:///projects/rectangles)
|
|
error[E0507]: cannot move out of `value`, a captured variable in an `FnMut` closure
|
|
--> src/main.rs:18:30
|
|
|
|
|
15 | let value = String::from("closure called");
|
|
| ----- captured outer variable
|
|
16 |
|
|
17 | list.sort_by_key(|r| {
|
|
| --- captured by this `FnMut` closure
|
|
18 | sort_operations.push(value);
|
|
| ^^^^^ move occurs because `value` has type `String`, which does not implement the `Copy` trait
|
|
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
18 | sort_operations.push(value.clone());
|
|
| ++++++++
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|
|
error: could not compile `rectangles` (bin "rectangles") due to 1 previous error
|