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 = "async-std")]
6pub mod async_std;
7
8#[cfg(feature = "smol")]
9pub mod smol;
10
11#[cfg(feature = "thread-pool")]
12pub mod thread_pool;