summaryrefslogtreecommitdiffstats
path: root/futures/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2021-11-29 14:51:35 +0700
committerLibravatar GitHub <noreply@github.com>2021-11-29 14:51:35 +0700
commit96c7f9765c716dbe94d25f4961d07bc8e18a02c4 (patch)
tree7963a9dfa913736fcf849db38c666ce4b834e3bc /futures/src
parentaeec0375f0897b2ef0897c4c54476b2d0db9311a (diff)
parent24d7d4740fd163b3d3f52fb8ea41233001ab6b93 (diff)
downloadiced-96c7f9765c716dbe94d25f4961d07bc8e18a02c4.tar.gz
iced-96c7f9765c716dbe94d25f4961d07bc8e18a02c4.tar.bz2
iced-96c7f9765c716dbe94d25f4961d07bc8e18a02c4.zip
Merge pull request #1118 from TannerRogalsky/native-web-fixes
Native web fixes.
Diffstat (limited to 'futures/src')
-rw-r--r--futures/src/lib.rs69
1 files changed, 47 insertions, 22 deletions
diff --git a/futures/src/lib.rs b/futures/src/lib.rs
index 01cf5c89..ba7c558b 100644
--- a/futures/src/lib.rs
+++ b/futures/src/lib.rs
@@ -37,33 +37,58 @@ pub mod time;
pub use command::Command;
pub use executor::Executor;
+pub use platform::*;
pub use runtime::Runtime;
pub use subscription::Subscription;
-/// A boxed static future.
-///
-/// - On native platforms, it needs a `Send` requirement.
-/// - On the Web platform, it does not need a `Send` requirement.
#[cfg(not(target_arch = "wasm32"))]
-pub type BoxFuture<T> = futures::future::BoxFuture<'static, T>;
+mod platform {
+ /// A boxed static future.
+ ///
+ /// - On native platforms, it needs a `Send` requirement.
+ /// - On the Web platform, it does not need a `Send` requirement.
+ pub type BoxFuture<T> = futures::future::BoxFuture<'static, T>;
-/// A boxed static future.
-///
-/// - On native platforms, it needs a `Send` requirement.
-/// - On the Web platform, it does not need a `Send` requirement.
-#[cfg(target_arch = "wasm32")]
-pub type BoxFuture<T> = futures::future::LocalBoxFuture<'static, T>;
+ /// A boxed static stream.
+ ///
+ /// - On native platforms, it needs a `Send` requirement.
+ /// - On the Web platform, it does not need a `Send` requirement.
+ pub type BoxStream<T> = futures::stream::BoxStream<'static, T>;
-/// A boxed static stream.
-///
-/// - On native platforms, it needs a `Send` requirement.
-/// - On the Web platform, it does not need a `Send` requirement.
-#[cfg(not(target_arch = "wasm32"))]
-pub type BoxStream<T> = futures::stream::BoxStream<'static, T>;
+ /// Boxes a stream.
+ ///
+ /// - On native platforms, it needs a `Send` requirement.
+ /// - On the Web platform, it does not need a `Send` requirement.
+ pub fn boxed_stream<T, S>(stream: S) -> BoxStream<T>
+ where
+ S: futures::Stream<Item = T> + Send + 'static,
+ {
+ futures::stream::StreamExt::boxed(stream)
+ }
+}
-/// A boxed static stream.
-///
-/// - On native platforms, it needs a `Send` requirement.
-/// - On the Web platform, it does not need a `Send` requirement.
#[cfg(target_arch = "wasm32")]
-pub type BoxStream<T> = futures::stream::LocalBoxStream<'static, T>;
+mod platform {
+ /// A boxed static future.
+ ///
+ /// - On native platforms, it needs a `Send` requirement.
+ /// - On the Web platform, it does not need a `Send` requirement.
+ pub type BoxFuture<T> = futures::future::LocalBoxFuture<'static, T>;
+
+ /// A boxed static stream.
+ ///
+ /// - On native platforms, it needs a `Send` requirement.
+ /// - On the Web platform, it does not need a `Send` requirement.
+ pub type BoxStream<T> = futures::stream::LocalBoxStream<'static, T>;
+
+ /// Boxes a stream.
+ ///
+ /// - On native platforms, it needs a `Send` requirement.
+ /// - On the Web platform, it does not need a `Send` requirement.
+ pub fn boxed_stream<T, S>(stream: S) -> BoxStream<T>
+ where
+ S: futures::Stream<Item = T> + 'static,
+ {
+ futures::stream::StreamExt::boxed_local(stream)
+ }
+}