如何修复 Rust 错误 "value used here after move"?
How to fix Rust error "value used here after move"?
这是我的Cargo.toml。
[package]
name = "test"
version = "0.1.0"
authors = ["test <test@gmail.com>"]
edition = "2018"
[dependencies]
rand = "0.8.3"
walkdir = "2.3.1"
这是我的main.rs。
use std::fs;
use std::io::Error;
use std::path::Path;
use walkdir::WalkDir;
fn main() {
for entry in WalkDir::new(".").max_depth(1) {
if &entry.unwrap().path().strip_prefix(".\").unwrap().to_str().unwrap() == &"src" {
println!("{:#?}", "Yes, it's src!!!");
}
}
}
此代码可以 运行 没有任何问题。但是,当我修改如下代码时:
use std::fs;
use std::io::Error;
use std::path::Path;
use walkdir::WalkDir;
fn main() {
for entry in WalkDir::new(".").max_depth(1) {
if &entry.unwrap().path().strip_prefix(".\").unwrap().to_str().unwrap() == &"src" {
println!("{:#?}", "Yes, it's src!!!");
}
if &entry.unwrap().path().strip_prefix(".\").unwrap().to_str().unwrap() == &"target" {
println!("{:#?}", "Yes, it's target!!!");
}
}
}
我收到错误“移动后此处使用的值”,这意味着第二个 if
中的 &entry.unwrap()
正在使用移动的值。我的想法是先克隆 entry
if
然后 unwrap
。但是上面没有clone()
方法。我怎样才能使这段代码工作?
Result::unwrap
使用结果对象,将条目移出 Result
并移入 return 值。
解包一次并将结果对象存储在变量中 (let entry = entry.unwrap();
) 或使用 Result::as_ref
借用 Result
中的对象 (entry.as_ref().unwrap().path()...
)
这是我的Cargo.toml。
[package]
name = "test"
version = "0.1.0"
authors = ["test <test@gmail.com>"]
edition = "2018"
[dependencies]
rand = "0.8.3"
walkdir = "2.3.1"
这是我的main.rs。
use std::fs;
use std::io::Error;
use std::path::Path;
use walkdir::WalkDir;
fn main() {
for entry in WalkDir::new(".").max_depth(1) {
if &entry.unwrap().path().strip_prefix(".\").unwrap().to_str().unwrap() == &"src" {
println!("{:#?}", "Yes, it's src!!!");
}
}
}
此代码可以 运行 没有任何问题。但是,当我修改如下代码时:
use std::fs;
use std::io::Error;
use std::path::Path;
use walkdir::WalkDir;
fn main() {
for entry in WalkDir::new(".").max_depth(1) {
if &entry.unwrap().path().strip_prefix(".\").unwrap().to_str().unwrap() == &"src" {
println!("{:#?}", "Yes, it's src!!!");
}
if &entry.unwrap().path().strip_prefix(".\").unwrap().to_str().unwrap() == &"target" {
println!("{:#?}", "Yes, it's target!!!");
}
}
}
我收到错误“移动后此处使用的值”,这意味着第二个 if
中的 &entry.unwrap()
正在使用移动的值。我的想法是先克隆 entry
if
然后 unwrap
。但是上面没有clone()
方法。我怎样才能使这段代码工作?
Result::unwrap
使用结果对象,将条目移出 Result
并移入 return 值。
解包一次并将结果对象存储在变量中 (let entry = entry.unwrap();
) 或使用 Result::as_ref
借用 Result
中的对象 (entry.as_ref().unwrap().path()...
)