summaryrefslogtreecommitdiffstats
path: root/examples/download_progress
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 02:01:42 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 02:01:42 +0100
commit800a73ddd7d4a2e0b1ed23ec565cbc6325b3b7f0 (patch)
treeb2eeb7537ffd49bfbdd24c1a9580870eca99caa6 /examples/download_progress
parent0f9934b1a70cdadb9131b68b6dfb76083f014636 (diff)
downloadiced-800a73ddd7d4a2e0b1ed23ec565cbc6325b3b7f0.tar.gz
iced-800a73ddd7d4a2e0b1ed23ec565cbc6325b3b7f0.tar.bz2
iced-800a73ddd7d4a2e0b1ed23ec565cbc6325b3b7f0.zip
Use new `async ||` closure syntax :tada:
Diffstat (limited to 'examples/download_progress')
-rw-r--r--examples/download_progress/src/download.rs2
1 files changed, 1 insertions, 1 deletions
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<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)?;