エラーがわかりませんcannot move out of borrowed content
。私は何度もそれを受け取り、常に解決してきましたが、理由がわかりませんでした。
例えば:
for line in self.xslg_file.iter() {
self.buffer.clear();
for current_char in line.into_bytes().iter() {
self.buffer.push(*current_char as char);
}
println!("{}", line);
}
エラーが発生します:
error[E0507]: cannot move out of borrowed content
--> src/main.rs:31:33
|
31 | for current_char in line.into_bytes().iter() {
| ^^^^ cannot move out of borrowed content
Rustの新しいバージョンでは、エラーは
error[E0507]: cannot move out of `*line` which is behind a shared reference
--> src/main.rs:31:33
|
31 | for current_char in line.into_bytes().iter() {
| ^^^^ move occurs because `*line` has type `std::string::String`, which does not implement the `Copy` trait
クローンを作成して解決しましたline
:
for current_char in line.clone().into_bytes().iter() {
次のような他の投稿を読んでも、エラーがわかりません。
この種のエラーの原因は何ですか?