iced_futures/
backend.rs

1//! The underlying implementations of the `iced_futures` contract!
2pub mod null;
3
4#[cfg(not(target_arch = "wasm32"))]
5pub mod native;
6
7#[cfg(target_arch = "wasm32")]
8pub mod wasm;
9
10pub mod default;