summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-08 01:13:22 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-08 01:13:22 +0200
commit23d9497e7ff54f48a4c07247d7f1f68270b510d2 (patch)
tree1bee3c6978c1ccab65b53add80c862516b97df6d
parent978327f9e7f68d3e5bc280faa0617487d8eabc57 (diff)
downloadiced-23d9497e7ff54f48a4c07247d7f1f68270b510d2.tar.gz
iced-23d9497e7ff54f48a4c07247d7f1f68270b510d2.tar.bz2
iced-23d9497e7ff54f48a4c07247d7f1f68270b510d2.zip
Allow future in `stream::channel` to return
-rw-r--r--futures/src/stream.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/futures/src/stream.rs b/futures/src/stream.rs
index 2ec505f1..06f9230d 100644
--- a/futures/src/stream.rs
+++ b/futures/src/stream.rs
@@ -1,6 +1,5 @@
//! Create asynchronous streams of data.
use futures::channel::mpsc;
-use futures::never::Never;
use futures::stream::{self, Stream, StreamExt};
use std::future::Future;
@@ -16,11 +15,11 @@ pub fn channel<T, F>(
f: impl FnOnce(mpsc::Sender<T>) -> F,
) -> impl Stream<Item = T>
where
- F: Future<Output = Never>,
+ F: Future<Output = ()>,
{
let (sender, receiver) = mpsc::channel(size);
- let runner = stream::once(f(sender)).map(|_| unreachable!());
+ let runner = stream::once(f(sender)).filter_map(|_| async { None });
stream::select(receiver, runner)
}