Split iced_futures into different backend implementations
This commit is contained in:
parent
5dab5a327e
commit
167be45a7d
19 changed files with 280 additions and 318 deletions
10
futures/src/backend.rs
Normal file
10
futures/src/backend.rs
Normal file
|
|
@ -0,0 +1,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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue