Module iced_futures::backend::default
source · Expand description
A default, cross-platform backend.
-
On native platforms, it will use:
backend::native::tokio
when thetokio
feature is enabled.backend::native::async-std
when theasync-std
feature is enabled.backend::native::smol
when thesmol
feature is enabled.backend::native::thread_pool
otherwise.
-
On Wasm, it will use
backend::wasm::wasm_bindgen
.
Re-exports§
pub use crate::backend::native::tokio::*;