diff options
author | 2022-02-01 11:40:58 +0700 | |
---|---|---|
committer | 2022-02-01 11:40:58 +0700 | |
commit | d95889aca9557dcefae37c63eb9b7dbc0d3cd7f2 (patch) | |
tree | c9296743188d298a4654163e275834692bca1f98 /futures/src/backend/null.rs | |
parent | 12060f823f9d519de2c61c7590b6e847e4b702e8 (diff) | |
download | iced-d95889aca9557dcefae37c63eb9b7dbc0d3cd7f2.tar.gz iced-d95889aca9557dcefae37c63eb9b7dbc0d3cd7f2.tar.bz2 iced-d95889aca9557dcefae37c63eb9b7dbc0d3cd7f2.zip |
Fix `default` backend in `iced_futures`
Fixes #1228.
Diffstat (limited to '')
-rw-r--r-- | futures/src/backend/null.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/futures/src/backend/null.rs b/futures/src/backend/null.rs index e22e7921..609b8b3f 100644 --- a/futures/src/backend/null.rs +++ b/futures/src/backend/null.rs @@ -16,3 +16,7 @@ impl crate::Executor for Executor { #[cfg(target_arch = "wasm32")] fn spawn(&self, _future: impl Future<Output = ()> + 'static) {} } + +pub mod time { + //! Listen and react to time. +} |