diff options
Diffstat (limited to 'examples/download_progress/src/download.rs')
-rw-r--r-- | examples/download_progress/src/download.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/download_progress/src/download.rs b/examples/download_progress/src/download.rs index 5b81f7a2..0c1a0d2e 100644 --- a/examples/download_progress/src/download.rs +++ b/examples/download_progress/src/download.rs @@ -1,10 +1,10 @@ use iced::futures::StreamExt; -use iced::task::{sipper, Straw}; +use iced::task::{Straw, sipper}; use std::sync::Arc; pub fn download(url: impl AsRef<str>) -> impl Straw<(), Progress, Error> { - sipper(move |mut progress| async move { + sipper(async move |mut progress| { let response = reqwest::get(url.as_ref()).await?; let total = response.content_length().ok_or(Error::NoContentLength)?; |