summaryrefslogtreecommitdiffstats
path: root/futures
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-01-04 23:19:15 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-01-04 23:20:40 +0100
commit09ea73bd2a43ecbcae56cb281aa8d0cce2d5f55d (patch)
tree0a4400c51b6de0012e9afb76089ed371e0441e6c /futures
parent50452e62b4df458d676fc95361b04ef2dd83aebf (diff)
downloadiced-09ea73bd2a43ecbcae56cb281aa8d0cce2d5f55d.tar.gz
iced-09ea73bd2a43ecbcae56cb281aa8d0cce2d5f55d.tar.bz2
iced-09ea73bd2a43ecbcae56cb281aa8d0cce2d5f55d.zip
Use `Instant::into_std` in `futures::time`
Diffstat (limited to 'futures')
-rw-r--r--futures/src/time.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/futures/src/time.rs b/futures/src/time.rs
index 7458af06..d015d2f0 100644
--- a/futures/src/time.rs
+++ b/futures/src/time.rs
@@ -81,6 +81,6 @@ where
tokio::time::interval_at(start, self.0)
};
- stream.map(|_| std::time::Instant::now()).boxed()
+ stream.map(tokio::time::Instant::into_std).boxed()
}
}