euv-core 0.8.21

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
7
8
9
10
11
12
13
14
15
16
/// A zero-sized application context struct providing access to core euv framework APIs.
///
/// This struct serves as a namespace for framework functions, allowing them to be
/// accessed in a more object-oriented style. It contains no fields and all methods
/// are effectively static.
///
/// The `App` struct provides unified access to:
/// - Signal management (`use_signal`)
/// - Batched updates (`batch`)
/// - DOM mounting (`mount`)
/// - Scheduled updates (`schedule_update`)
/// - Cleanup registration (`use_cleanup`)
/// - Interval handling (`use_interval`)
/// - Window event handling (`use_window_event`)
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct App;