ลองพิจารณาตัวอย่างต่อไปนี้:
main.rs
use futures::executor::block_on;
use futures::future::{FutureExt, TryFutureExt};
async fn fut1() -> Result<String, u32> {
Ok("ok".to_string())
}
fn main() {
println!("Hello, world!");
match block_on(fut1().and_then(|x| async move { Ok(format!("{} is \"ok\"", x)) })) {
Ok(s) => println!("{}", s),
Err(u) => println!("{}", u)
};
}
Cargo.toml
[dependencies]
futures = "^0.3"
ฉันถามเกี่ยวกับการแสดงออกแทน|x| async move {}
async move |x| {}
หลังมีความชัดเจนมากขึ้น แต่พบข้อผิดพลาดในการรวบรวม:
error[E0658]: async closures are unstable
จากนั้นผมก็สงสัยว่าอะไรคือความแตกต่างระหว่างและasync move || {}
|| async move {}
พวกเขาทั้งสองดูเหมือนจะปิดเพื่อใช้move
คำหลัก
$ rustc --version
rustc 1.39.0 (4560ea788 2019-11-04)