You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/01_getting_started/03_state_of_async_rust.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,8 +40,8 @@ language features and library support:
40
40
details.
41
41
42
42
Some language features you may be used to from synchronous Rust are not yet
43
-
available in async Rust. Notably, Rust does not let you declare async
44
-
functions in traits. Instead, you need to use workarounds to achieve the same
43
+
available in async Rust. Notably, Rust did not let you declare async
44
+
functions in traits until 1.75.0 stable (and still has limitations on dynamic dispatch for those traits). Instead, you need to use workarounds to achieve the same
0 commit comments