iced_futures 0.14.0

Commands, subscriptions, and future executors for iced
Documentation
1
2
3
4
5
6
7
8
9
//! Backends that are only available in native platforms: Windows, macOS, or Linux.
#[cfg(feature = "tokio")]
pub mod tokio;

#[cfg(feature = "smol")]
pub mod smol;

#[cfg(feature = "thread-pool")]
pub mod thread_pool;