euv-core 0.5.18

A declarative, cross-platform UI framework for Rust with virtual DOM, reactive signals, and HTML macros for WebAssembly.
Documentation
1
2
3
4
5
6
/// The name of the browser API used to schedule a microtask.
///
/// This is the standard `queueMicrotask` function available on the `window`
/// object, used to defer the dispatch callback until the next microtask
/// checkpoint when `setTimeout` is unavailable.
pub(crate) const QUEUE_MICROTASK: &str = "queueMicrotask";