Skip to content

Commit

Permalink
Merge pull request #209 from sunrosa/patch-1
Browse files Browse the repository at this point in the history
Update 03_state_of_async_rust.md for 1.75.0 because async traits have more support now
  • Loading branch information
nrc authored Oct 5, 2024
2 parents 1bcfce6 + 450f6df commit 654329e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/01_getting_started/03_state_of_async_rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ 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
available in async Rust. Notably, Rust did not let you declare async
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
result, which can be more verbose.

## Compiling and debugging
Expand Down

0 comments on commit 654329e

Please sign in to comment.