iced_futures/backend/
native.rs

1//! Backends that are only available in native platforms: Windows, macOS, or Linux.
2#[cfg(feature = "tokio")]
3pub mod tokio;
4
5#[cfg(feature = "smol")]
6pub mod smol;
7
8#[cfg(feature = "thread-pool")]
9pub mod thread_pool;