iced-yoda/futures/src/backend/native.rs

13 lines
269 B
Rust
Raw Normal View History

//! 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;