From 86cf3f79f36d6118fca5c5de2e5f951504702e53 Mon Sep 17 00:00:00 2001 From: Denys Bushulyak Date: Fri, 15 Mar 2024 22:56:05 +0300 Subject: [PATCH] Update 03_state_of_async_rust.md Update regarding to new stabialized future (https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-traits.html) --- src/01_getting_started/03_state_of_async_rust.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/01_getting_started/03_state_of_async_rust.md b/src/01_getting_started/03_state_of_async_rust.md index deaaf616..8dd6211c 100644 --- a/src/01_getting_started/03_state_of_async_rust.md +++ b/src/01_getting_started/03_state_of_async_rust.md @@ -40,9 +40,7 @@ language features and library support: details. Some language features you may be used to from synchronous Rust are not yet -available in async Rust. Notably, Rust does not let you declare async -functions in traits. Instead, you need to use workarounds to achieve the same -result, which can be more verbose. +available in async Rust. ## Compiling and debugging