blob: 1cc4af808850d3f7aac17b2efddc0cfd601799fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
//! 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;
|