iced/futures/src/backend/native.rs
2023-05-11 17:28:51 +02:00

12 lines
269 B
Rust

//! Backends that are only available in native platforms: Windows, macOS, or Linux.
#[cfg(feature = "tokio")]
pub mod tokio;
#[cfg(feature = "async-std")]
pub mod async_std;
#[cfg(feature = "smol")]
pub mod smol;
#[cfg(feature = "thread-pool")]
pub mod thread_pool;