आइए निम्नलिखित उदाहरणों पर विचार करें:
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)