Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Network Programming with Rust

You're reading from  Network Programming with Rust

Product type Book
Published in Feb 2018
Publisher Packt
ISBN-13 9781788624893
Pages 278 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Abhishek Chanda Abhishek Chanda
Profile icon Abhishek Chanda

Awaiting the future

In the last section, we saw how tasks composed of multiple futures are often difficult to write and debug. One attempt at remedying this is using a crate that wraps futures and associated error handling, yielding a more linear flow of code. This crate is called futures-await and is under active development.

This crate provides two primary mechanisms of dealing with futures:

  • The #[async] attribute that can be applied to functions, marking them as asynchronous. These functions must return the Result of their computation as a future.
  • The await! macro that can be used with async functions to consume the future, returning a Result.

Given these constructions, our earlier example download will look like this:

#[async]
fn download(url: &str) -> io::Result<Data> {
...
}

#[async]
fn parse_html(data: &Data) -> io::Result<Links> {
...
}

#[async...
lock icon The rest of the chapter is locked
arrow left Previous Chapter
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}