diff options
author | 2024-07-08 01:13:22 +0200 | |
---|---|---|
committer | 2024-07-08 01:13:22 +0200 | |
commit | 23d9497e7ff54f48a4c07247d7f1f68270b510d2 (patch) | |
tree | 1bee3c6978c1ccab65b53add80c862516b97df6d /futures/src/stream.rs | |
parent | 978327f9e7f68d3e5bc280faa0617487d8eabc57 (diff) | |
download | iced-23d9497e7ff54f48a4c07247d7f1f68270b510d2.tar.gz iced-23d9497e7ff54f48a4c07247d7f1f68270b510d2.tar.bz2 iced-23d9497e7ff54f48a4c07247d7f1f68270b510d2.zip |
Allow future in `stream::channel` to return
Diffstat (limited to '')
-rw-r--r-- | futures/src/stream.rs | 5 |
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) } |