diff options
author | 2025-02-21 01:41:42 +0100 | |
---|---|---|
committer | 2025-02-21 01:41:56 +0100 | |
commit | c12beecd387ad57eef434b64598473f613e32f57 (patch) | |
tree | 79104030fec14dc20c4df86baf2b1965ccd290cb /futures/src/stream.rs | |
parent | 33a39bc83a1de62f21b3176ab86bd542d5f5c20b (diff) | |
download | iced-c12beecd387ad57eef434b64598473f613e32f57.tar.gz iced-c12beecd387ad57eef434b64598473f613e32f57.tar.bz2 iced-c12beecd387ad57eef434b64598473f613e32f57.zip |
Remove unnecessary `Future` imports
Diffstat (limited to '')
-rw-r--r-- | futures/src/stream.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/futures/src/stream.rs b/futures/src/stream.rs index af2f8c99..72e1f04b 100644 --- a/futures/src/stream.rs +++ b/futures/src/stream.rs @@ -2,8 +2,6 @@ use futures::channel::mpsc; use futures::stream::{self, Stream, StreamExt}; -use std::future::Future; - /// Creates a new [`Stream`] that produces the items sent from a [`Future`] /// to the [`mpsc::Sender`] provided to the closure. /// |