iced/futures/src/backend.rs
2022-01-28 21:37:17 +07:00

10 lines
198 B
Rust

//! The underlying implementations of the `iced_futures` contract!
pub mod null;
#[cfg(not(target_arch = "wasm32"))]
pub mod native;
#[cfg(target_arch = "wasm32")]
pub mod wasm;
pub mod default;