Aşağıdaki örnekleri ele alalım:
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"
Bunun |x| async move {}
yerine ifadeyi soruyorum async move |x| {}
. İkincisi daha açıktır, ancak derleme hatasına girer:
error[E0658]: async closures are unstable
Sonra merak ediyorum, async move || {}
ve arasındaki fark nedir || async move {}
. Her ikisi de move
anahtar kelimeyi kullanmak için kapaklar gibi görünüyor .
$ rustc --version
rustc 1.39.0 (4560ea788 2019-11-04)