From 800a73ddd7d4a2e0b1ed23ec565cbc6325b3b7f0 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 21 Feb 2025 02:01:42 +0100 Subject: Use new `async ||` closure syntax :tada: --- examples/download_progress/src/download.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/download_progress') diff --git a/examples/download_progress/src/download.rs b/examples/download_progress/src/download.rs index 95df5cbe..0c1a0d2e 100644 --- a/examples/download_progress/src/download.rs +++ b/examples/download_progress/src/download.rs @@ -4,7 +4,7 @@ use iced::task::{Straw, sipper}; use std::sync::Arc; pub fn download(url: impl AsRef) -> 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)?; -- cgit